Home / Admin / Change OG Title of a Specific Post
Duplicate Snippet

Embed Snippet on Your Site

Change OG Title of a Specific Post

This filter can be used to change the OG Title of a Specific Post with ID 14.

You can replace '14' with the ID of the desired post.

<10
Code Preview
php
<?php
add_filter( 'aioseo_facebook_tags', 'aioseo_filter_facebook_title' );
function aioseo_filter_facebook_title( $facebookMeta ) {
   if ( is_singular() && 14 === get_the_ID() ) {
      $facebookMeta['og:title'] = "A different title";
   }
   return $facebookMeta;
}

Comments

Add a Comment