• Hi,
    I need a help, i want to hide the verion of wordpress from view source for that iam using this function.

    <?php
    
     function remove_wp_version () {
        return '';
    }
    add_filter ( 'the_generator', 'remove_wp_version' );
    remove_action('wp_head', 'wp_generator');
    ?>

    this hide the version from main link but still many links shown the version of wordpress.
    Here is my site.
    Thanxs

Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘version does not hide’ is closed to new replies.