我是WordPress主题开发的新手,但对PHP的了解却不是这样(我来自Java和C#),并且在此自定义主题中存在以下情况

如您所见,我首先在首页中显示一个包含特色帖子(我已使用特定标签实现)的部分(在evidenza中名为Articoli),在其下还有另一个区域(名为Ultimi Articoli),其中包含不是该特色帖子的最新帖子。

为此,我使用以下代码:

要选择所有精选文章,我使用以下行来创建一个新的WP_Query对象,该对象定义具有特定标签featured的查询:

<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>


然后我使用其have_posts()方法迭代此查询结果。

因此,据我了解,这不是WordPress主要查询,而是由我创建的新查询。据我了解,最好创建一个新查询(如已完成),并且当我要执行这种操作时不使用主查询。

是真的,还是我错过了什么?如果是真的,您能解释一下为什么创建一个新的自定义查询而不修改Wordpress主查询更好吗?

好吧,继续。我将显示所有没有“功能”标签的帖子。为此,我使用以下代码片段,相反,该代码片段修改了主查询:

$featured = new WP_Query('tag=featured');


所以我认为,这非常可怕。是真的吗?

更新:

要执行相同的操作,我发现了已添加到functions.php中的此函数(在下面的最佳答案中)。

    <?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;
        ?>


该函数具有一个挂钩,该挂钩在创建查询变量对象之后但在实际查询运行之前被调用。

因此,据我所知,它以查询对象作为输入参数,并通过选择除特定标记(在我的情况下为featured标记)之外的所有所有帖子来修改(实际上是过滤器)

,如何使用带有此功能的上一个查询(用于显示特色帖子的查询)仅显示主题中未特色的帖子?还是我必须创建一个新查询?

#1 楼

您的实际问题基本上是何时运行自定义查询以及何时使用主查询。让我们分为三个部分
PART ONE
何时运行自定义查询(这不是确定的列表)


创建自定义内容滑块
/>

要在页面中创建特色内容区域


如果需要显示帖子,请在page.php模板上


如果您需要在静态首页上自定义内容


显示相关的,热门的或信息性的帖子


任何其他辅助或补充内容内容超出主要查询的范围


何时使用主要查询。
将主要内容显示在


在您的主页上,并在后端将其设置为博客页面的页面


所有存档页面,其中包括诸如archive.php,category.php,author.php,taxonomy.php,tag等模板.php和date.php


更新:在真实页面和静态首页上显示自定义内容(请参阅在真实页面和静态首页上使用pre_get_posts)


第二部分

要选择所有具有特色的帖子,我使用以下行来创建一个新的WP_Query对象,该对象定义具有特定标签的查询:
所以,据我所知,这不是WordPres主查询,而是由我创建的新查询。据我了解,最好是创建一个新查询(完成),而当我想执行这种操作时不使用主查询。

更正。这超出了主查询的范围。这是辅助查询或补充内容,无法使用主查询创建。您应该始终使用WP_Queryget_posts创建您的自定义查询。
从不使用query_posts创建自定义查询,甚至任何其他查询。我的重点。

注意:插件或主题不打算使用此功能。如后面所述,有更好的,性能更高的选项可以更改主查询。 query_posts()是通过将页面的主要查询替换为新的查询实例来修改页面的主要查询的过于简单和有问题的方式。它效率低下(重新运行SQL查询),并且在某些情况下(尤其是在处理帖子分页时,通常会完全失败)。

继续进行

好吧,继续显示所有没有功能标签的帖子,为此,我使用以下代码段来修改主要查询:
query_posts( array( 'tag__not_in' => array ( $term->term_id )));

所以我认为这很可怕。是真的吗?

都错了,很遗憾您的说法是正确的。如前所述,切勿使用query_posts。它会运行一个全新的查询,这会降低性能,并且在大多数情况下会破坏分页,这是使分页正常工作的主要查询的一个组成部分。
这是您的主要内容,因此您应该使用具有默认循环的主查询,该循环看起来应该像这样,而这就是您所需要的全部
<?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;
?>

您可以完全摆脱此部分,删除它,将其刻录掉,然后忘记它
<?
// 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 )));
?>

好吧,一旦完成,您会看到来自feature标签的帖子使用主查询和默认循环显示在您的主页中。
从中删除此标签的正确方法主页位于pre_get_posts。这是更改主查询和应始终用于更改主内容循环的挂钩的正确方法。
因此,带有pre_get_posts的代码正确,这是您应使用的功能。只是一件事,请务必检查您是否不在管理页面上,因为pre_get_posts也会更改后端。因此,这是在functions.php中使用的正确代码,以删除首页中带有标签的帖子
add_action( 'pre_get_posts', 'exclude_featured_tag' );
function exclude_featured_tag( $query ) 
{
    if (    !is_admin() 
         && $query->is_home() 
         && $query->is_main_query() 
    ) {
        $query->set( 'tag__not_in', [ID OF THE FEATURED TAG] );
    }
}

第三部分
额外的阅读材料将对以后有所帮助


条件标记


什么时候应该使用WP_Query vs query_posts()vs get_posts()?


什么时候应该使用WP_query(),query_posts()和pre_get_posts


查询概述


使用CMS循环的指南



评论


我的荣幸。很高兴您发现它很有用。恩茹:-)

–Pieter Goosen
2015年4月30日14:26在

哇,真是个答案!不过,我缺少一条关键信息:如何在主帖子页面之外告诉WP“这是帖子页面”?假设我想要一个类别为10、11、12的帖子列表,以及另一个类别为13、14、15的帖子列表。我知道如何使用pre_get_posts将类别注入主查询,但是如何告诉WP将其呈现为具有适当分页的帖子列表?我真的必须按照您的广泛回答在这里wordpress.stackexchange.com/a/215027/74134,因为它是页面吗? WordPress当然可以在一个站点中允许多个博客列表吗?

–马克·贝瑞(Mark Berry)
17年4月8日在2:21