WordPress Version check with PHP

Try checking the attribute contents before setting the value: $generator=””; // clear previous value for ($i = 0; $i < $metas->length; $i++) { $meta = $metas->item($i); if($meta->getAttribute(‘name’) == ‘description’) $description = $meta->getAttribute(‘content’); if($meta->getAttribute(‘name’) == ‘generator’) { $thisgenerator = $meta->getAttribute(‘content’); if ( ($generator == ”) && (stristr($thisgenerator,’wordpress’)) ) { $generator = $thisgenerator; } } }

When will the 4.3 branch become EOL

It is EOL. WordPress will backport security fixes when it can, but makes no promises for updates for anything except the latest version. You should have updated 3 years ago. WordPress will be backported security updates when possible, but there are no guarantee and no timeframe for older releases. There are no fixed period of … Read more

Information about WordPress 4

Release Date: WordPress 4.0 is planned for August 27September 3, 2014 Source WordPress 4.0 Release: […] For those unaware, for WordPress, version 4.0 sounds like a “big” version number but it’s just another major release for us, like 3.9 and 4.1, constructed over the same ~4-month release cycle. […] Source For WordPress 4.0 features follow … Read more

Removing WordPress version number from included files [duplicate]

After further Googling I was able to come across a site that explains how to achieve this. http://www.virendrachandak.com/techtalk/how-to-remove-wordpress-version-parameter-from-js-and-css-files/ The second function on the page is quite helpful. This looks for “ver=” and checks that it matches the WordPress version number and then removes it. The first function on the page removes all version numbers from … Read more

Downloading WordPress: Nightly Build vs. Stable Download

Stable release of WP is the one meant for production. Any serious issues (such as security) are addressed via minor releases. Some of the fixes for not that serious issues can be received ahead of schedule with Hotfix plugin. Non-stable versions are usually run by WordPress developers for the sake of experimentation and early access … Read more