在自定义While循环中使用_post()时返回True的挂钩

时间:2012-08-03 作者:webmasters

我像这样获取外部数据,但我还添加了\\u post();

while($slice = mysql_fetch_assoc($result)){
    the_post();
    rest of my stuff
}
我需要一个钩子来告诉我\\u post()是否返回true,如下所示:

while($slice = mysql_fetch_assoc($result)){
    the_post();
    if(the post returs true){ do something;
    else { rest of my stuff }
}
有什么想法吗?

1 个回复
SO网友:Bainternet

如果您使用本机wp_query 要选择POST而不是自定义sql查询,可以根据have_posts() 方法wp_query

结束

相关推荐