Desejo desativar o srcset apenas ao chamar um tamanho de miniatura específico (por exemplo, apenas ao chamar o tamanho total da imagem).
Aqui estão duas idéias (se bem entendi):
Abordagem # 1
Vamos verificar o tamanho do post_thumbnail_size
filtro. Se ele corresponder a um tamanho correspondente (por exemplo full
), garantiremos que ele $image_meta
esteja vazio, com o wp_calculate_image_srcset_meta
filtro. Dessa forma, podemos resgatar antecipadamente a wp_calculate_image_srcset()
função (antes de usar os filtros max_srcset_image_width
ou wp_calculate_image_srcset
para desativá-la):
/**
* 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;
}
Se tiver-mos:
the_post_thumbnail( 'full' );
a <img>
tag gerada não conterá o srcset
atributo
Para o caso:
the_post_thumbnail();
nós poderíamos combinar a 'post-thumbnail'
string do tamanho.
Abordagem # 2
Também podemos adicionar / remover o filtro manualmente com:
// 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
filtro quando as extremidades de função