meta-description php code
-
I’m using the following code in my header template file to generate meta-descriptions. It seems to be working okay for my home page and for posts without a manual excerpt. However, for the posts which have manual excerpts added it just grabs the first few lines of the post.
<?php if (is_single()) : if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <meta name="description" content="<?php the_excerpt(); ?>" /> <?php endwhile; endif; elseif(is_home()) : ?> <meta name="description" content="my home page meta-description here" /> <?php endif; ?>
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘meta-description php code’ is closed to new replies.