Change meta description tab by ID in Yoast SEO

Change meta description tab by ID in Yoast SEO.

Snippet Type

Execute on Child Sites

Snippet

function prefix_filter_description_example( $description ) {
  if ( is_page( 12345 ) ) {
    $description = 'My custom custom meta description';
  }
  return $description;
}
add_filter( 'wpseo_metadesc', 'prefix_filter_description_example' );

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