<style id='global-styles-inline-css' type='text/css'>
:root{--wp--preset--aspect-ratio--square**********
</style>
wordpress 新版的自带的 global-styles-inline-css,讨厌死了!一直想删除它,在网上找了好久,也各家AI的方法也试了,没个鸟用!
最终还是在github上有个牛人给出了正确办法:在functions.php里加下面的:
// 移除 global-styles-inline-css
remove_action( 'wp_enqueue_scripts', 'wp_enqueue_global_styles' );
remove_action( 'wp_footer', 'wp_enqueue_global_styles', 1 );