AI Search
Classic Search
Notifications
Clear all
Oct 09, 2024 1:34 am
Whenever I post my main forum link on LinkedIn, it pulls a member’s avatar image.
https://renewableheatinghub.co.uk/forums
2 Replies
Oct 09, 2024 1:36 am
I have done this already. It’s changed forum posts, but not my main URL as above.
function my_default_og_image( $image_url, $type ){
if( $type == 'og:image' && !$image_url){
return 'https://example.com/images/mylogo.jpg';
}
else{
return $image_url;
}
}
add_filter('wpforo_find_image_url', 'my_default_og_image', 10, 2);
