你好我在我的wordpress网站上运行wishlist成员插件,但似乎它没有阻止档案页面。我想要做的是使用这2个短代码,因此它会阻止它在存档页面中显示的内容。如何将这个打开和关闭的短代码添加到下面的php文件中: [wlm_ismember] [/ wlm_ismember]
这是用于输入短代码的PHP代码
<?php echo do_shortcode('[shortcode]');?
这是我正在使用的文件,我想将[wlm_ismember]短代码置于<article <?php post_class(); ?>>
之上,将[/ wlm_ismember]置于</article>
之下,以便文章不显示。
<?php /* Loop Template used for index/archive/search */
$options = get_option('mh_options');
$excerpt_length = empty($options['excerpt_length']) ? '125' : $options['excerpt_length'];
?>
<?php echo do_shortcode('[wlm_ismember]');?>
<article <?php post_class(); ?>>
<div class="loop-wrap clearfix">
<div class="loop-thumb">
<a href="<?php the_permalink(); ?>">
<?php if (has_post_thumbnail()) { the_post_thumbnail('loop'); } ?>
</a>
</div>
<header class="loop-data">
<h3 class="loop-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<p class="meta"><a href="<?php the_permalink()?>" rel="bookmark"><?php $date = get_the_date(); echo $date; ?></a> // <?php comments_number(__('0 Comments', 'mh'), __('1 Comment', 'mh'), __('% Comments', 'mh')); ?></p>
</header>
<?php the_content(); ?>
</div>
</article>