Hi Archie,
Thank You for helping out. Where in the index.php template do I insert
<meta name="description" content="Irish Dress Designer, Irish Clothing Designer, Irish Fashion Designer." />
This is content of the template index.php …
<?php get_header(); ?>
<h1 class="page-title">
<?php
$blog_page = get_option('tz_blog_page');
$meta = get_post_meta($blog_page, 'heading_value', true);
if($meta != ''):
echo $meta;
else:
_e('The Blog', 'framework');
endif;
?>
</h1>
<!--BEGIN #primary .hfeed-->
<div id="primary" class="hfeed">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<!--BEGIN .hentry -->
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<h2 class="entry-title"><a>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'framework'), get_the_title()); ?>"> <?php the_title(); ?></a></h2>
<?php /* if the post has a WP 2.9+ Thumbnail */
if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) { ?>
<div class="post-thumb">
<a>" href="<?php the_permalink(); ?>"><?php the_post_thumbnail('thumbnail-archive'); /* post thumbnail settings configured in functions.php */ ?></a>
</div>
<?php } ?>
<!--BEGIN .clearfix -->
<div class="clearfix">
<!--BEGIN .entry-meta .entry-header-->
<div class="entry-meta entry-header">
<span class="author"><?php _e('By', 'framework') ?> <?php the_author_posts_link(); ?></span>
<span class="published"><?php _e('On', 'framework') ?> <strong><?php the_time( get_option('date_format') ); ?></strong></span>
<span class="entry-categories"><?php _e('In', 'framework') ?> <?php the_category(', ') ?></span>
<span class="comment-count"><?php _e('With', 'framework') ?> <?php comments_popup_link(__('No Comments', 'framework'), __('1 Comment', 'framework'), __('% Comments', 'framework')); ?></span>
<span class="permalink"><img src="<?php echo get_template_directory_uri(); ?>/images/permalink_icon.png" alt="<?php printf(__('Permanent Link to %s', 'framework'), get_the_title()); ?>" /><a>" href="<?php the_permalink(); ?>"><?php _e('Permalink', 'framework') ?></a></span>
<?php edit_post_link( __('edit', 'framework'), '<span class="edit-post">[', ']</span>' ); ?>
<!--END .entry-meta entry-header -->
</div>
<!--BEGIN .entry-content -->
<div class="entry-content ">
<?php the_content(__('Continue Reading →', 'framework')); ?>
<!--END .entry-content -->
</div>
<!--END .clearfix -->
</div>
<!--END .hentry-->
</div>
<?php endwhile; ?>
<!--BEGIN .navigation .page-navigation -->
<div class="navigation page-navigation">
<div class="nav-next"><?php next_posts_link(__('← Older Entries', 'framework')) ?></div>
<div class="nav-previous"><?php previous_posts_link(__('Newer Entries →', 'framework')) ?></div>
<!--END .navigation .page-navigation -->
</div>
<?php else : ?>
<!--BEGIN #post-0-->
<div id="post-0" <?php post_class(); ?>>
<h2 class="entry-title"><?php _e('Error 404 - Not Found', 'framework') ?></h2>
<!--BEGIN .entry-content-->
<div class="entry-content">
<p><?php _e("Sorry, but you are looking for something that isn't here.", "framework") ?></p>
<!--END .entry-content-->
</div>
<!--END #post-0-->
</div>
<?php endif; ?>
<!--END #primary .hfeed-->
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
[Please post code or markup between backticks or use the code button. Or better still – use a pastebin. Your posted code has now been permanently damaged/corrupted by the forum’s parser.]