我像这样获取外部数据,但我还添加了\\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 }
}
有什么想法吗?