Display metadesc in category
-
Hi. I want to display metadesc in my category’s pages like this:
echo get_post_meta(get_the_ID(), ‘_yoast_wpseo_metadesc’, true);
It works in posts, but doesn’t work in categories.
In categories I write:$category = get_queried_object();
$cat_id = $category->term_id;
echo get_term_meta($cat_id, ‘_yoast_wpseo_metadesc’, true);
How can I show metadesc in categories?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Display metadesc in category’ is closed to new replies.