जवाबों:
यदि हम देखते हैं template-loader.php
, तो हम उन परिस्थितियों को देख सकते हैं जिनके तहत paged.php
लोड किया जाएगा:
if ( defined('WP_USE_THEMES') && WP_USE_THEMES ) :
$template = false;
if ( is_404() && $template = get_404_template() ) :
elseif ( is_search() && $template = get_search_template() ) :
elseif ( is_tax() && $template = get_taxonomy_template() ) :
elseif ( is_front_page() && $template = get_front_page_template() ) :
elseif ( is_home() && $template = get_home_template() ) :
elseif ( is_attachment() && $template = get_attachment_template() ) :
remove_filter('the_content', 'prepend_attachment');
elseif ( is_single() && $template = get_single_template() ) :
elseif ( is_page() && $template = get_page_template() ) :
elseif ( is_category() && $template = get_category_template() ) :
elseif ( is_tag() && $template = get_tag_template() ) :
elseif ( is_author() && $template = get_author_template() ) :
elseif ( is_date() && $template = get_date_template() ) :
elseif ( is_archive() && $template = get_archive_template() ) :
elseif ( is_comments_popup() && $template = get_comments_popup_template() ) :
elseif ( is_paged() && $template = get_paged_template() ) :
else :
$template = get_index_template();
endif;
if ( $template = apply_filters( 'template_include', $template ) )
include( $template );
return;
endif;
अंतिम elseif
वह स्थान है जहाँ पृष्ठांकित टेम्प्लेट लोड होता है यदि यह मौजूद है:
elseif ( is_paged() && $template = get_paged_template() ) :
जिसका अर्थ है कि ऊपर दिए गए सभी चेक paged.php
को लोड किए जाने वाले टेम्पलेट के लिए गलत लौटना होगा, क्वेरी is_paged
और कोई अन्य सामग्री-विशिष्ट टेम्पलेट नहीं मिला।
is_paged()
इसका यही मतलब है, हालांकि अगर कोई और विशिष्ट टेम्पलेट उपलब्ध है, तो उस टेम्पलेट को पहले कहा जाएगा paged.php
। उदाहरण के लिए, यदि आपके विषय में कोई archive.php
टेम्प्लेट है, paged.php
तो उसका उपयोग किसी भी प्रकार की सामग्री के लिए नहीं किया जाएगा archive.php
, चाहे पृष्ठ संख्या की परवाह किए बिना।
हाँ, यदि आप paged.php
अपने विषय में उपस्थित हैं , तो उस टेम्पलेट का उपयोग संग्रह के पहले पृष्ठ पर सभी के लिए किया जाएगा। यह तब होता है जब आपके संग्रह के लिए स्टाइलिंग / मार्कअप पहले पृष्ठ और बाद के पृष्ठों के बीच बहुत भिन्न होता है।
archive.php
या category.php
मौजूद है, paged.php
तो इसका उपयोग नहीं किया जाएगा। केवल अगर वहाँ सिर्फ एक index.php
टेम्पलेट paged.php
पूर्वता ले जाएगा ।
ध्यान दें कि WP के रूप में 4.7 paged.php टेम्पलेट लोडर से पूरी तरह से हटा दिया गया है और इस प्रकार टेम्पलेट पदानुक्रम।