Get Yoast SEO title for custom taxonomy – WordPress

I’m trying to get the SEO title from a custom taxonomy. Here’s my current code for it: $my_yoast_wpseo_title = get_term_meta( $term_id, ‘_wpseo_title’, true ); if( $my_yoast_wpseo_title ){ echo $my_yoast_wpseo_title; } else { echo ‘No title’; } It doesn’t work. So I tried different meta keys like _yoast_wpseo_title and everything I could find in their docs and other … Read more