Tag: Standards
Loading IE Conditional Stylesheets in WordPress
Most web developers are familiar with the IE conditional comments that allow you to load a stylesheet only in Internet Explorer. <!– [if lt IE 9]> <link href=”ie.css” rel=”stylesheet” type=”text/css”> <![endif]–> Many new WordPress developers tend to just hardcode these conditional comments directly into their …
PHP CodeSniffer – Coding standards
PHP CodeSniffer scan PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.
To install phpcs on ubuntu
pear install PHP_CodeSniffer
To list all installed coding standards
phpcs -i
I found great article on rtCamp site. you can read it here.
Give me some suggestion if you have !