Use the Yoast SEO title instead of the post title in Relevanssi

Use the Yoast SEO title instead of the post title in Relevanssi on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'relevanssi_post_title_before_tokenize', 'rlv_use_yoast_title', 10, 2 );
function rlv_use_yoast_title( $title, $post ) {
    return get_post_meta( $post->ID, '_yoast_wpseo_title', true );
}
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.