WordPress 技巧:删除列表页的 Shortcode

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

/*
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');

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

更多 WordPress Shortcode 介绍和使用技巧:


©我爱水煮鱼,本站推荐使用的主机:阿里云,国外主机建议使用BlueHost

本站长期承接 WordPress 优化建站业务,请联系微信:「chenduopapa」。