从循环中获取特定类别的帖子标题

时间:2015-11-13 01:45:35

标签: php wordpress

我正在尝试这段代码:

int a = getInt("Give a non-negative integer: ");
System.out.println(String.valueOf(a).replaceAll("(\\d)",
            "$1" + System.lineSeparator()));

它对我来说非常适合。但是如果我试图搜索该帖子不存在,它将不会在该小部件上显示任何内容。

我能从这种情况中防止什么?

1 个答案:

答案 0 :(得分:0)

试试这个,我希望它能奏效,如果你遇到任何问题,请告诉我。

<ul>
<?php 
$casino_news = new WP_Query('category_name=casino_games'); 
while($casino_news->have_posts()) :
 if($casino_news->get_the_post() == '' ){
     $casino_news->the_title(); 
 }else{
     $casino_news->the_post(); 
 } 
?>
<li>
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permalink to <?php the_title(); ?>"><?php the_title(); ?></a>
</li>
<?php endwhile; ?>
<?php wp_reset_query(); ?>
</ul>