WordPress 技巧:删除列表页的 Shortcode

2023-04-15 15:01:50 浏览数 (1)

有时候我们希望保持首页和其他列表页尽可能的简单,比如不输出 Shortcode:

代码语言:javascript复制
/*
Plugin Name: 删除列表页的 Shortcode
Plugin URI:  http://blog.wpjam.com/m/remove-shortcode-from-archive/
Description: 删除首页和其他列表页的 Shortcode。
Version: 0.1
Author: Denis
Author URI: http://blog.wpjam.com/
*/
function wpjam_remove_shortcode_from_archive($content) {
	if ( !is_singular() ) {
		$content = strip_shortcodes( $content );
	}
	return $content;
}
add_filter('the_content', 'wpjam_remove_shortcode_from_archive');

将上面的保存为一个插件,上传激活即可。

0 人点赞