HI i added the following code to my function.php in my child theme folder. is there anything else i need to do in order to make featured image to appear in my social media ? a step by step guide will be very useful. thank you !
if ( ! function_exists( ‘nelioefi_add_image_for_sharing’ ) ) {
add_action( ‘wp_head’, ‘nelioefi_add_image_for_sharing’, 99 );
function nelioefi_add_image_for_sharing() {
$image = nelioefi_get_thumbnail_src( get_the_ID() );
if ( $image ) {
echo “<meta property=\”og:image\” content=\”$image\” />”;
}
}
}