Home Forums WoodMart support forum metatag title and description

metatag title and description

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #309954

    lenamtl
    Participant

    How can I add manual meta-tag for title and descritpion into your theme without the use of a plugin?

    #309955

    lenamtl
    Participant

    And I would like to remove
    <meta name="generator....

    and I would like to add extra info to
    <meta name=’robots’ content=’max-image-preview:large’ />

    noarchive, noodp, noydir

    #310061

    Hello,

    Please add this code to the funtions.php of the child theme:

    remove_action( 'wp_head', 'wp_generator' );
    add_action(
    	'wp_head',
    	function() {
    		echo '<meta name="robots" content="max-image-preview:large">';
    	}
    );

    Best Regards

Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)