wordpress模版中有许多没用的代码,比如头部内联样式 global-styles-inline-css和duotone svg等。那么我们如何屏蔽/去除这些内联代码呢?下面给大家简单介绍一下具体实现方法!
在当前主题的functions.php文件中新增以下代码:
//移除头部global-styles-inline-css add_action('wp_enqueue_scripts', 'remove_global_styles_inline'); function remove_global_styles_inline(){ wp_deregister_style( 'global-styles' ); wp_dequeue_style( 'global-styles' ); } //wp-block相关的冗余代码 add_action('wp_enqueue_scripts', 'remove_styles_inline'); function remove_styles_inline(){ wp_deregister_style( 'global-styles' ); wp_dequeue_style( 'global-styles' ); wp_dequeue_style( 'wp-block-library' ); wp_dequeue_style( 'wp-block-library-theme' ); wp_dequeue_style( 'wc-block-style' ); }
wordpress新建页面中页面属性里没有“模板”选项解决方法
wordpress获取当前文章最后一个tags标签(不带链接)
标签: wordpress模版, wordpress移出代码
上面是“wordpress如何屏蔽/移除内联样式”的全面内容,想了解更多关于 wordpress 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_3928.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!