मैं वर्डप्रेस थीम के विकास में बहुत नया हूं और मैं PHP में नहीं हूं (मैं जावा और सी # से आया हूं) और इस थीम विषय में निम्न स्थिति है
जैसा कि आप मुखपृष्ठ में देख सकते हैं कि मैं पहली बार एक पोस्ट दिखाता हूँ (जिसका नाम है आर्टिकोली इन एविडेनज़ा ) जिसमें चित्रित पोस्ट हैं (मैंने इसे एक विशिष्ट टैग का उपयोग करके लागू किया है) और इसके अंतर्गत एक और क्षेत्र है (जिसका नाम अल्टिमी आर्टिकोली है ) जिसमें नवीनतम पोस्ट शामिल है। यह विशेष रुप से पोस्ट नहीं हैं।
यह करने के लिए मैं इस कोड का उपयोग करता हूं:
<section id="blog-posts">
<header class="header-sezione">
<h2>Articoli in evidenza</h2>
</header>
<!--<?php query_posts('tag=featured');?>-->
<?php
$featured = new WP_Query('tag=featured');
if ($featured->have_posts()) :
while ($featured->have_posts()) : $featured->the_post();
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part('content', get_post_format());
endwhile;
wp_reset_postdata();
else :
// If no content, include the "No posts found" template.
get_template_part('content', 'none');
endif;
?>
<header class="header-sezione">
<h2>Ultimi Articoli</h2>
</header>
<?php
// get the term using the slug and the tag taxonomy
$term = get_term_by( 'slug', 'featured', 'post_tag' );
// pass the term_id to tag__not_in
query_posts( array( 'tag__not_in' => array ( $term->term_id )));
?>
<?php
if (have_posts()) :
// Start the Loop.
while (have_posts()) : the_post();
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
get_template_part('content', get_post_format());
endwhile;
else :
// If no content, include the "No posts found" template.
get_template_part('content', 'none');
endif;
?>
</section>
यह ठीक काम करता है, लेकिन मुझे इस समाधान की गुणवत्ता और यह वास्तव में कैसे काम करता है, इस बारे में कुछ संदेह हैं।
सभी चुनिंदा पोस्टों का चयन करने के लिए , मैं इस लाइन का उपयोग करता हूं जो एक नया WP_Query
ऑब्जेक्ट बनाता है जो विशिष्ट टैग वाले क्वेरी को परिभाषित करता है featured
:
$featured = new WP_Query('tag=featured');
फिर मैं इस have_posts()
विधि के परिणाम का उपयोग करते हुए इस क्वेरी पर पुनरावृति करता हूं ।
इसलिए, जो मैंने समझा है, वह वर्डप्रेस मुख्य क्वेरी नहीं है, लेकिन यह मेरे द्वारा बनाई गई एक नई क्वेरी है। जो मैं समझता हूं, वह बेहतर है कि जब भी मैं इस तरह का ऑपरेशन करूं तो एक नई क्वेरी (जैसा किया गया हो) और मुख्य क्वेरी का उपयोग न करें।
क्या यह सच है, या मैं कुछ याद कर रहा हूं? यदि यह सच है, तो क्या आप मुझे समझा सकते हैं, कि नई कस्टम क्वेरी बनाना बेहतर क्यों है और वर्डप्रेस मुख्य क्वेरी को संशोधित नहीं करना है?
ठीक है, चल रहा है। मैं उन सभी पोस्टों को दिखाता हूं जिनमें 'फ़ीचर्ड' टैग नहीं है। ऐसा करने के लिए, मैं इस कोड स्निपेट का उपयोग करता हूं, जो इसके विपरीत, मुख्य क्वेरी को संशोधित करता है:
<?php
// get the term using the slug and the tag taxonomy
$term = get_term_by( 'slug', 'featured', 'post_tag' );
// pass the term_id to tag__not_in
query_posts( array( 'tag__not_in' => array ( $term->term_id )));
?>
<?php
if (have_posts()) :
// Start the Loop.
while (have_posts()) : the_post();
get_template_part('content', get_post_format());
endwhile;
else :
// If no content, include the "No posts found" template.
get_template_part('content', 'none');
endif;
?>
इसलिए मुझे लगता है, यह बहुत भयानक है। क्या यह सच है?
अपडेट करें:
उसी ऑपरेशन को करने के लिए मुझे यह फ़ंक्शन (नीचे दिए गए शानदार उत्तर में) मिला है, जिसे मैंने फ़ंक्शन. php में जोड़ा है
function exclude_featured_tag( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'tag__not_in', 'array(ID OF THE FEATURED TAG)' );
}
}
add_action( 'pre_get_posts', 'exclude_featured_tag' );
इस फ़ंक्शन में एक हुक होता है जिसे क्वेरी चर ऑब्जेक्ट बनाने के बाद कहा जाता है, लेकिन वास्तविक क्वेरी चलने से पहले।
इसलिए, जो मैंने समझा है, वह इनपुट पैरामीटर के रूप में एक क्वेरी ऑब्जेक्ट लेता है और एक विशिष्ट टैग (मेरे मामले में featured
टैग पोस्ट) को छोड़कर सभी पदों का चयन करके इसे संशोधित करता है (वास्तव में फ़िल्टर करता है )
तो, मैं इस फ़ंक्शन के साथ पिछली क्वेरी (जो विशेष रुप से प्रदर्शित पदों को दिखाने के लिए उपयोग किया जाता है) का उपयोग कैसे कर सकता हूं ताकि मेरी थीम में केवल विशेष रुप से प्रदर्शित पोस्ट न दिखाई दें? या मुझे एक नई क्वेरी बनानी होगी?