Hello,
Thank you for contacting us and bringing your concern to our attention.
You can use the following filter on your website to change the og:type for your specific posts:
add_filter( "rank_math/opengraph/facebook/og_type", function( $content ) {
global $post;
$post_ids = array(1,2,3); // Replace 1,2,3 with your post/page ID(s)
if(!empty($post->ID) && is_numeric($post->ID) && in_array((int)$post->ID, $post_ids)){
$content = 'video';
}
return $content;
});
Here’s how you can add filter/hook to your WordPress site: https://rankmath.com/kb/wordpress-hooks-actions-filters/
Hope that helps and please don’t hesitate to let us know if you have any other questions.
Thank you.
Hello,
Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.
If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.
Thank you.