हाय @janoChen:
सरल उत्तर: नहीं।
WordPRess v3.0.4 wp_reset_query()
से फ़ंक्शन के लिए PHP कोड क्या है और /wp-includes/query.php
साथ ही बाद में कहे जाने वाले फ़ंक्शन क्या हैं। आप देख सकते हैं कि यह मुख्य रूप से वैश्विक चर को संशोधित करने के बारे में है।
जब आप उपयोग करते हैं new WP_Query($args)
तो आप मानों को स्थानीय चर से रिटर्न मान प्रदान करेंगे, जब तक कि आप कुछ ऐसा जटिल नहीं कर रहे हैं कि आप पहले से ही इस प्रश्न का उत्तर जान लेंगे, तो आपको कॉल करने की आवश्यकता नहीं है wp_reset_query()
:
function wp_reset_query() {
unset($GLOBALS['wp_query']);
$GLOBALS['wp_query'] =& $GLOBALS['wp_the_query'];
wp_reset_postdata();
}
function wp_reset_postdata() {
global $wp_query;
if ( !empty($wp_query->post) ) {
$GLOBALS['post'] = $wp_query->post;
setup_postdata($wp_query->post);
}
}
function setup_postdata($post) {
global $id, $authordata, $day, $currentmonth, $page, $pages, $multipage, $more, $numpages;
$id = (int) $post->ID;
$authordata = get_userdata($post->post_author);
$day = mysql2date('d.m.y', $post->post_date, false);
$currentmonth = mysql2date('m', $post->post_date, false);
$numpages = 1;
$page = get_query_var('page');
if ( !$page )
$page = 1;
if ( is_single() || is_page() || is_feed() )
$more = 1;
$content = $post->post_content;
if ( strpos( $content, '<!--nextpage-->' ) ) {
if ( $page > 1 )
$more = 1;
$multipage = 1;
$content = str_replace("\n<!--nextpage-->\n", '<!--nextpage-->', $content);
$content = str_replace("\n<!--nextpage-->", '<!--nextpage-->', $content);
$content = str_replace("<!--nextpage-->\n", '<!--nextpage-->', $content);
$pages = explode('<!--nextpage-->', $content);
$numpages = count($pages);
} else {
$pages = array( $post->post_content );
$multipage = 0;
}
do_action_ref_array('the_post', array(&$post));
return true;
}
-माइक