如何仅显示简码而不显示wordpress中帖子的内容?
我正在使用的代码是:
<?php $post_content = get_the_content(); ?>
<?php if ( has_shortcode( $post_content, '360' ) ) {
echo do_shortcode( $post_content );
} ?>
现在的结果是发布内容以及简码生成的代码,如何仅显示简码?
答案 0 :(得分:2)
使用这样的代码
$post_content = get_the_content();
if ( has_shortcode( $post_content, '360' ) ) {
echo do_shortcode("[360]");
}