Alright, I know this is lame but with my very limited knowledge of PHP, here’s the code containing the php bloginfo. Where would I enter the href parameters? I think I know where but there’s no sense in trashing the ‘header.php’ and having to re-install WP. Always learning you know. Here’s the beginning code:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml” <?php language_attributes(); ?>>
<head profile=”https://gmpg.org/xfn/11″>
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
<?php if(is_home() || is_single() || is_page()) { echo ‘<meta name=”robots” content=”index,follow” />’; } else { echo ‘<meta name=”robots” content=”noindex,follow” />’; } ?>
<?php if (is_single() || is_page() ) : if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<meta name=”description” content=”<?php metaDesc(); ?>” />
<?php csv_tags(); ?>
<?php endwhile; endif; elseif(is_home()) : ?>
<meta name=”description” content=”<?php if(get_option(‘uwc_site_description’)) { echo get_option(‘uwc_site_description’); } else { bloginfo(‘description’); } ?>” />
<meta name=”keywords” content=”<?php if(get_option(‘uwc_keywords’)) { echo get_option(‘uwc_keywords’); } else { echo ‘wordpress,c.bavota,magazine basic,custom theme,tinkerpriestmedia.com’; } ?>” />
<?php endif; ?>
<title><?php wp_title(”); ?><?php if(wp_title(”, false)) { echo ‘ | ‘; } ?><?php bloginfo(‘name’); if(is_home()) { echo ‘ | ‘; bloginfo(‘description’); } ?></title>
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
<link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
<!–[if IE]>
<link rel=”stylesheet” type=”text/css” href=”<?php bloginfo(‘template_url’); ?>/iestyles.css” />
<![endif]–>
<!–[if lte IE 6]>
<script defer type=”text/javascript” src=”<?php bloginfo(‘template_url’); ?>/images/pngfix.js”></script>
<![endif]–>
<?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ ); ?>
<?php wp_head(); ?>
</head>