WordPress只显示没有内容的简码

时间:2019-01-16 14:32:12

标签: wordpress

如何仅显示简码而不显示wordpress中帖子的内容?

我正在使用的代码是:

<?php $post_content = get_the_content(); ?>
<?php if ( has_shortcode( $post_content, '360' ) ) {
    echo do_shortcode( $post_content );
} ?>

现在的结果是发布内容以及简码生成的代码,如何仅显示简码?

1 个答案:

答案 0 :(得分:2)

使用这样的代码

$post_content = get_the_content();
if ( has_shortcode( $post_content, '360' ) ) {
  echo do_shortcode("[360]");
}