Chcę wyłączyć zestaw srcset tylko podczas wywoływania określonego rozmiaru miniatury (na przykład tylko podczas wywoływania pełnego rozmiaru obrazu).
Oto dwa pomysły (jeśli dobrze cię rozumiem):
Podejście nr 1
Sprawdźmy rozmiar z post_thumbnail_size
filtra. Jeśli pasuje do odpowiedniego rozmiaru (np. full
), Upewniamy się, że $image_meta
jest pusty, z wp_calculate_image_srcset_meta
filtrem. W ten sposób możemy wcześniej wycofać się z wp_calculate_image_srcset()
funkcji (wcześniej niż używając filtrów max_srcset_image_width
lub, wp_calculate_image_srcset
aby ją wyłączyć):
/**
* Remove the srcset attribute from post thumbnails
* that are called with the 'full' size string: the_post_thumbnail( 'full' )
*
* @link http://wordpress.stackexchange.com/a/214071/26350
*/
add_filter( 'post_thumbnail_size', function( $size )
{
if( is_string( $size ) && 'full' === $size )
add_filter(
'wp_calculate_image_srcset_meta',
'__return_null_and_remove_current_filter'
);
return $size;
} );
// Would be handy, in this example, to have this as a core function ;-)
function __return_null_and_remove_current_filter ( $var )
{
remove_filter( current_filter(), __FUNCTION__ );
return null;
}
Jeśli mamy:
the_post_thumbnail( 'full' );
wygenerowany <img>
znacznik nie będzie zawierał srcset
atrybutu.
W przypadku:
the_post_thumbnail();
możemy dopasować 'post-thumbnail'
rozmiar łańcucha.
Podejście nr 2
Możemy również dodać / usunąć filtr ręcznie za pomocą:
// Add a filter to remove srcset attribute from generated <img> tag
add_filter( 'wp_calculate_image_srcset_meta', '__return_null' );
// Display post thumbnail
the_post_thumbnail();
// Remove that filter again
remove_filter( 'wp_calculate_image_srcset_meta', '__return_null' );
wp_calculate_image_srcset_meta
filtr, gdy funkcja się skończyadd_filter
. Ten wzór jest bardzo powszechny.