• Resolved tinaastiller

    (@tinaastiller)


    Hi,
    I follow instructions, but warning “Check if full WordPress version info is revealed in page’s meta data” appears. What should I do to make it disappear?
    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Author Lars Koudal

    (@lkoudal)

    Hello @tinaastiller

    Please ensure you have added this to the functions.php file as in the instructions:

    function remove_version() {
    	return '';
    }
    add_filter('the_generator', 'remove_version');
    

    This should be added to the functions.php file in your -active- theme or child theme.

    If that code does not work try this:

    remove_action('wp_head', 'wp_generator');

    If that code does not work for you either, you should make sure the theme you are using is actually using wp_head(); in the header.php file – This is default WordPress behavior and should be present in every theme.

Viewing 1 replies (of 1 total)
  • The topic ‘Warning appears’ is closed to new replies.