mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
4 lines
202 B
Text
4 lines
202 B
Text
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 );
|
|
}
|