Change featured image
-
Hello. I’m having this warnings in Search Console: “Image size smaller than recommended size”.
So, I tryed to change it in my functions.php when the image is not a .webp (since I use webp, they have the correct size), but this code is not working:
add_filter( 'amp_schemaorg_metadata', function( $metadata ) {
$auxImage = get_the_post_thumbnail_url();
If (strpos(strtoupper($auxImage),'.WEBP') == 0){
$post_image_meta = array('@type'=>'ImageObject',
'url'=>'https://mysite/default.webp',
'width'=>'1200',
'height'=>'675');
$metadata['image'] = $post_image_meta;
}
return $metadata;});Thank you.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Change featured image’ is closed to new replies.