web-dev-qa-db-ja.com

特定のタグを持つすべての投稿をクエリする

特定のタグを使用してすべての投稿を取得する必要がありますが、代わりにすべての投稿を取得しています。必要なタグを使用して投稿を公開し、そのタグを使用してすべての投稿を一覧表示すると、クエリは機能しますが、別のタグを使用して投稿を公開すると、新しく公開された投稿が取得されます。

これは私の質問です:

$original_query = $wp_query;
$wp_query = null;
$args=array(
    'posts_per_page' => -1, 
    'tag' => $post_tag
);
$wp_query = new WP_Query( $args );
$post_titles=array();
$i=0;
if ( have_posts() ) :
    while (have_posts()) : the_post();
        $post_titles[$i]=get_the_ID() ;
        $i++;
    endwhile;
endif;
$wp_query = null;
$wp_query = $original_query;
wp_reset_postdata();
2
Antwan

元のファイルを消去または上書きしてみるよりも、新しいWP_Queryを作成する方がはるかに簡単です。

$ post_tagがタグスラッグの場合は、単純に次のように使用できます。

<?php
$the_query = new WP_Query( 'tag='.$post_tag );

if ( $the_query->have_posts() ) {
    echo '<ul>';
    while ( $the_query->have_posts() ) {
        $the_query->the_post();
        echo '<li>' . get_the_title() . '</li>';
    }
    echo '</ul>';
} else {
    // no posts found
}
/* Restore original Post Data */
wp_reset_postdata();
5
Courtney Ivey

Functions.phpで

/* Display Related Products */
/* ======================== */

if ( ! function_exists( 'display_related_products' ) ) {

    function display_related_products($post_tag) {
        ?>
        <div class="related-products">

            <!-- simple WP_Query -->
            <?php
                $args = array(
                    'post_type' => 'product',
                    'tag' => $post_tag, // Here is where is being filtered by the tag you want
                    'orderby' => 'id',
                    'order' => 'ASC'
                );

                $related_products = new WP_Query( $args );
            ?>

            <?php while ( $related_products -> have_posts() ) : $related_products -> the_post(); ?>

                <a href="<?php the_permalink(); ?>" class="related-product">
                    <?php if( has_post_thumbnail() ) : ?>
                        <?php the_post_thumbnail( 'full', array( 'class' => 'related-product-img', 'alt' => get_the_title() ) ); ?>
                    <?php endif; ?>
                </a>

            <?php endwhile; wp_reset_query(); ?>

        </div>
        <?php
    }
}

どこからでも電話をかける

display_related_products('name-of-the-tag');
0
drjorgepolanco