• Resolved skinnytwinkie

    (@skinnytwinkie)


    where in this code do I add my Meta Tags?

    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
    <title><?php bloginfo(‘name’); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />

    I have a Health Blog, so i want to add words like “Healthy” or “Organic”, but not quite sure HOW and WHERE to add them in my code. I think it is SOMEWHERE in the section listed above…help anyone?

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • skinnytwinkie,

    The meta tags go in the header.php file within the <head></head> tags.

    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    
    <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> ? Blog Archive <?php } ?>
    <?php wp_title(); ?></title>
    
    <meta name="keywords" content="healthy, organic">
    
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    Thread Starter skinnytwinkie

    (@skinnytwinkie)

    ok, thank you!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Where do I add my Meta Tags???’ is closed to new replies.