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 介绍和使用技巧: