如何再Wordpress中屏蔽谷歌字体
在WordPress中屏蔽谷歌字体可以通过几种方法来实现,以下是几种常见的方法:
安装并激活插件
检查插件设置
编辑主题的functions.php文件
functions.php
添加以下代码
function remove_google_fonts() { wp_dequeue_style('twentytwentyone-fonts'); wp_deregister_style('twentytwentyone-fonts'); // 添加更多主题或插件使用的Google字体样式队列的删除代码 // wp_dequeue_style('插件或主题使用的 Google 字体的句柄名'); // wp_deregister_style('插件或主题使用的 Google 字体的句柄名'); } add_action('wp_enqueue_scripts', 'remove_google_fonts', 20);
@import url('https://fonts.googleapis.com/css?family=none');
创建Child Theme
wp-content/themes
twentyseventeen-child
style.css
在style.css文件中添加以下代码
/* Theme Name: Twenty Seventeen Child Template: twentyseventeen */ @import url("../twentyseventeen/style.css");
在functions.php文件中添加以下代码
<?php function remove_google_fonts_child_theme() { wp_dequeue_style('twentyseventeen-fonts'); wp_deregister_style('twentyseventeen-fonts'); // 添加更多主题或插件使用的Google字体样式队列的删除代码 // wp_dequeue_style('插件或主题使用的 Google 字体的句柄名'); // wp_deregister_style('插件或主题使用的 Google 字体的句柄名'); } add_action('wp_enqueue_scripts', 'remove_google_fonts_child_theme', 20);
以上方法可帮助你在WordPress中屏蔽谷歌字体,根据实际情况选择最适合你需求的方式。
请登录之后再进行评论
大家都在搜
智创聚合API
ChatGPT
智狐AI-MAX系统
Midjourney接口服务
智狐AI写作
智狐AI系统售前交流
圈子版务
投诉建议
#ChatGPT#
#码多多AI系统#
#小狐狸AI付费创作系统#
在WordPress中屏蔽谷歌字体可以通过几种方法来实现,以下是几种常见的方法:
方法一:通过插件屏蔽谷歌字体
安装并激活插件
检查插件设置
方法二:通过函数代码屏蔽谷歌字体
编辑主题的
functions.php
文件functions.php
文件。添加以下代码
方法三:通过修改CSS文件屏蔽谷歌字体
方法四:通过Child Theme屏蔽谷歌字体
创建Child Theme
wp-content/themes
文件夹中创建一个新的文件夹,例如twentyseventeen-child
。style.css
和functions.php
。在
style.css
文件中添加以下代码在
functions.php
文件中添加以下代码以上方法可帮助你在WordPress中屏蔽谷歌字体,根据实际情况选择最适合你需求的方式。