Website Platform (Chrome Sniffer) ?

2 replies
  • WEB DESIGN
  • |
I Use Chrome Sniffer to Check on which platfrom websites are built - But on few website i cant see the Platform.. So i also want to Remove That Thing .. when i open my website it shows WORDPRESS .. how can i remove so that Chrome Sniffer is not able to detect the platfrom ?
#chrome #lable #platform #sniffer #website
  • Profile picture of the author kokopelli
    You have to remove this code from the WordPress header.php file:
    Code:
    <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
    AND, either ...

    add this to the theme functions.php file:
    Code:
    remove_action('wp_head', 'wp_generator');
    or, use a plugin like Disabler, to prevent outputting of the WordPress version in your blog headers.

    In addition, if there is something like "Powered by WordPress" in the site's footer, you may want to take that out too.

    Of course, you can take it even further by also removing the WordPress signature from feeds, etc. - look here: http://wordpress.org/support/topic/r...ordpress-25-gt
    Signature
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    {{ DiscussionBoard.errors[5475075].message }}
    • Profile picture of the author Linkie
      Originally Posted by kokopelli View Post

      You have to remove this code from the WordPress header.php file:
      Code:
      <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
      AND, either ...

      add this to the theme functions.php file:
      Code:
      remove_action('wp_head', 'wp_generator');
      or, use a plugin like Disabler, to prevent outputting of the WordPress version in your blog headers.

      In addition, if there is something like "Powered by WordPress" in the site's footer, you may want to take that out too.

      Of course, you can take it even further by also removing the WordPress signature from feeds, etc. - look here: WordPress › Support » Remove <meta name="generator" content="WordPress 2.5" />
      nice explanation...
      is there any other plugin that won't slow my site loading time?
      {{ DiscussionBoard.errors[5499248].message }}

Trending Topics