The publishing platform WordPress adds a small line for itself to advertise and clarify that the site that you find is a site using WordPress.

Except that in addition to reporting that it’s WordPress, it goes to show the current version.It is not embarrassing, except that each version has its security problems…

Past one of this codes in your functions.php file.

[sourcecode language=”php”]// Remove the WordPress Generator

function remove_generators() { return ”; }

add_filter( ‘the_generator’, ‘remove_generators’ );[/sourcecode]

You can also say that it’s WordPress without specifying which version

[sourcecode language=”php”]// Change the WordPress Generator

function change_generators() { return ‘<meta name="generator" content="WordPress" />’; }

add_filter( ‘the_generator’, ‘change_generators’ );

[/sourcecode]

You May Also Like

Can Ghost, the new comer win a significant market share?

For some years now, WordPress (WP) has established itself in the blogging world, as the leader in web content creation and management. Born in 2003, the software which is used with PHP has won a multitude of bloggers. It certainly takes some knowledge in the field of computer science to use WordPress properly. But, past […]

Backing Up WordPress – Be Secure

Every user of WordPress knows that there is always a need to back up their files and database. This is because the security level of the WordPress is not be strong enough and that your site might get hacked. If your site will get hacked, surely your files and databases will be gone. So as […]

Hide a part from your content from non-registred visitors

Trying to get new “members” to his WordPress blog is not always easy. To try to push visitors to register and join your blog, you might resort to drastic measures as to conceal a portion of text. Or, another scenario, you might want to reserve a portion of text only to the most loyal visitors: […]

WordPress.com got a new face and open-sourced

Automattic, the creator of WordPress announced today, the relaunch WordPress.com. WordPress.com is the sister solution of the content management system WordPress, but it’s considered as the money-making machine for the company because it’s a hosted version of the CMS used by up to 25 percent of the Web entities. Based on the same system in […]