我想在我的wordpress项目中显示一个元框,我通过安装智能mag主题制作。它在页面顶部显示一个新闻自动收报机。当我发布任何新闻时,新闻会在新闻自动收报机中显示。但是我我只想在主页中选择新闻,我可以使用有两个选项的元框来控制:是或否。如果我按YES,则该帖子标题将在其他新闻自动收报机中。我主题中的代码如下: -
<div class="trending-ticker">
<span class="heading"><?php echo Bunyad::options()->topbar_ticker_text; // filtered html allowed for admins ?></span>
<ul>
<?php $query = new WP_Query(apply_filters('bunyad_ticker_query_args', array('orderby' => 'date', 'order' => 'desc', 'posts_per_page' => 8))); ?>
<?php while($query->have_posts()): $query->the_post(); ?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
</ul>
</div>
我该怎么做?请帮忙