Dynamically Change the SEO title of a Specific Term when the Metadata is Loaded
add_filter( “aioseo_get_term”, “aioseo_filter_term_data” ); function aioseo_filter_term_data( $term ) { if ( 12 === (int) $term->term_id ) { $term->title = ‘Some new title here’; } return $term; }Continue reading