如何从wp_enQueue_style中删除ID?

时间:2017-05-24 作者:Raha MK

如何从wp\\u enqueue\\u样式中删除ID?查看下面的图片

Noted in Green color

1 个回复
SO网友:TheDeadMedic

使用style_loader_tag 过滤器:

add_filter( \'style_loader_tag\', function ( $tag, $handle ) {
    return str_replace( " id=\'$handle-css\'", \'\', $tag );
}, 10, 2 );

结束

相关推荐