WordPress SEO by Yoast doesn’t display meta tags on paginated pages

I have a wordpress site that has SEO Meta tags populated by Yoast plugin.

This seems to work fine, except on any paginated page. On page2 or higher there is no

Read More

<meta name="description" > tag. Is there a simple setting I need to change? I can’t find anything about it online at all.

Related posts

Leave a Reply

1 comment

  1. You have to check if your WordPress header.php has a line with:

    <?php wp_head(); ?>
    

    That allows WordPress to inject code in the header. It has to be just before the closing head tag </head>. If not present just add it.