本文整理汇总了PHP中WP_query::reset_postdata方法的典型用法代码示例。如果您正苦于以下问题:PHP WP_query::reset_postdata方法的具体用法?PHP WP_query::reset_postdata怎么用?PHP WP_query::reset_postdata使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WP_query
的用法示例。
在下文中一共展示了WP_query::reset_postdata方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: search_everything_callback
function search_everything_callback()
{
$is_query = !empty($_GET['s']);
$result = array();
if ($is_query) {
$result = array('own' => array(), 'external' => array());
$params = array('s' => $_GET['s']);
$zemanta_response = se_api(array('method' => 'zemanta.suggest', 'return_images' => 0, 'return_rich_objects' => 0, 'return_articles' => 1, 'return_markup' => 0, 'return_rdf_links' => 0, 'return_keywords' => 0, 'careful_pc' => 1, 'interface' => 'wordpress-se', 'format' => 'json', 'emphasis' => $_GET['s'], 'text' => $_GET['text']));
if (!is_wp_error($zemanta_response) && $zemanta_response['response']['code'] == 200) {
$result['external'] = json_decode($zemanta_response['body'])->articles;
}
$SE = new SearchEverything(true);
if (!empty($_GET['exact'])) {
$params['exact'] = true;
}
$params["showposts"] = 5;
$post_query = new WP_query($params);
while ($post_query->have_posts()) {
$post_query->the_post();
$result['own'][] = get_post();
}
$post_query->reset_postdata();
}
print json_encode($result);
die;
}