我真的很想防止我的特色图片被钉住。这看起来很简单,但我只是没有足够的知识来做这件事。
我找到了这个,但它不起作用。我有divi主题,如果这很重要的话。
add_filter( \'post_thumbnail_html\', function( $html ){
if ( false !== stripos( $html, \'data-pin-nopin\' ) ) {
return $html;
}
// Add \'data-pin-nopin\' to the HTML tag.
$html = str_replace( \'<img \', \'<img data-pin-nopin="true" \', $html );
return $html;
});