Are your WordPress meta title and description tags not showing, even with Yoast SEO installed? All you may need is to add is the title theme support.
2 answers
1
Check for theme support
- Open your functions.php file;
- Inside this file, add in the title tag support;
- Save and refresh to check for the tags again.
add_theme_support( 'title-tag' );
— Support WizardAnswer 1
0
Check for tags
- Open your website in your browser and view the source;
- Press CTRL+F (CMD if on Mac) to open the search functionality;
- For the title, search for <title>;
- For the description, search for name=”description“;
- If none are present, move on to the next check.
— Support WizardAnswer 2