欢迎访问服务器技术网-www.fuwuqijishu.com

WordPress禁用Embeds功能 Disable Embeds插件与无插件

网站建设 fuwuqijishu 2年前 (2022-09-04) 25次浏览 0个评论 扫描二维码

我们很多网友喜欢使用WordPress的原因在于其功能越来越丰富,当然也有些网友不喜欢这么丰富的功能,毕竟在很多时候不会优化会导致网站占用资源越来越大。其中从WordPress 4.4版本开始就有增加Embeds功能,可以在内容中加入富文本内容。而且在网站代码中会多加载”wp-embed.min.js”文件。

如果我们不需要这样的功能则可以直接取消。我们可以采用插件或者无插件实现。

第一、无插件取消Embeds

function disable_embeds_code_init() {
remove_action( ‘rest_api_init’, ‘wp_oembed_register_route’ );

add_filter( ’embed_oembed_discover’, ‘__return_false’ );

remove_filter( ‘oembed_dataparse’, ‘wp_filter_oembed_result’, 10 );

remove_action( ‘wp_head’, ‘wp_oembed_add_discovery_links’ );

remove_action( ‘wp_head’, ‘wp_oembed_add_host_js’ );

add_filter( ‘tiny_mce_plugins’, ‘disable_embeds_tiny_mce_plugin’ );

add_filter( ‘rewrite_rules_array’, ‘disable_embeds_rewrites’ );

remove_filter( ‘pre_oembed_result’, ‘wp_filter_pre_oembed_result’, 10 );
}

add_action( ‘init’, ‘disable_embeds_code_init’, 9999 );

function disable_embeds_tiny_mce_plugin($plugins) {
return array_diff( $plugins, array(‘wpembed’) );
}

function disable_embeds_rewrites ($rules) {

foreach($rules as $rule => $rewrite) {

if(false !== strpos($rewrite, ’embed=true’)) {
unset($rules[$rule]);
}

}

return $rules;
}

加入到当前主题Functions.php文件中。

第二、插件快速取消

安装” Disable Embeds “插件。

WordPress禁用Embeds功能 Disable Embeds插件与无插件

直接激活安装即可。

总结,我们可以选择其中之一的方法来让WordPress禁用Embeds功能。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2202.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900