How to add dynamic meta description for wordpress blog


Step 1:

Open header.php form your current used theme folder.

Step 2:

Add below code in your file

<meta name=”description” content=”
<?php if (have_posts()&& is_single()):
while(have_posts()):the_post();
the_excerpt_rss(20,2);
endwhile;
else: ?>This is dynamic code .
<?php endif; ?> ”  />

 

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s