Add code below to functions.php
:
add_action( 'fb_og_type', 'change_og_type_to_appropriate_type' );
function change_og_type_to_appropriate_type ($type) {
if (is_single()) {
$current_post = get_post();
$post_format = get_post_format($current_post->id);
return $post_format === 'video' ? 'video': $type;
} else {
return $type;
}
}
-
This reply was modified 7 years, 10 months ago by webgodo.