This snippet lets you define a custom image for social sharing, ensuring your pages and posts display an image optimized for social platforms.
add_filter( 'aioseo_opengraph_image', function ( $image ) {
if ( is_single() ) {
return 'https://example.com/path-to-custom-image.jpg';
}
return $image;
});