I want to delete this line in my code
<meta name="generator" content="WordPress 2.6" />
This is many reasons why i need this, plz help me.
I want to delete this line in my code
<meta name="generator" content="WordPress 2.6" />
This is many reasons why i need this, plz help me.
Look in your theme's header.php file. The line you need to remove looks like this:
<meta name="generator" content="WordPress <?php bloginfo('version') ?>" /><!-- Please leave for stats -->
If you don´t have the above line in your theme´s header.php you can put this:
remove_action('wp_head', 'wp_generator');
in your function.php (theme folder).
evite senk!
This topic has been closed to new replies.