On Page Template:
1 |
echo get_post_meta(get_the_ID(), '_yoast_wpseo_title', true); |
On Archive:
1 2 3 4 |
$titles = get_option( 'wpseo_titles' ); $title = $titles['title-ptarchive-POST_TYPE']; echo apply_filters( 'the_title', $title ); |
On Term SEO titles:
1 2 3 4 5 6 |
$cat_id = get_query_var( 'cat' ); $meta = get_option( 'wpseo_taxonomy_meta' ); $title = $meta['category'][$cat_id]['wpseo_title']; echo apply_filters( 'the_title', $title ); |
On Tags:
1 2 3 4 5 6 |
$tag_id = get_query_var( 'tag' ); $meta = get_option( 'wpseo_taxonomy_meta' ); $title = $meta['post_tag'][$tag_id]['wpseo_title']; echo apply_filters( 'the_title', $title ); |