R
R
Roman Fear2021-10-27 09:32:00
WordPress
Roman Fear, 2021-10-27 09:32:00

How to correct the request in wp?

<?php $posts = get_posts( [
'category' => 76967,
'orderby' => date,
'numberposts' => 6,
] );?>

There is such a request, you need to change it so that it gives out posts from categories 76967 + 2
(if both of these categories are present only), if you set 'category' => 76967.2, then we get categories with one of the parameters (76967 or 2).

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Artem Zolin, 2021-10-27
@artzolin

$query = new WP_Query( [
  'orderby' => 'date',
  'posts_per_page' => 6,
  'category__and' => array( 76967, 2 ),
] );

Or you can collect tax_query , it looks clearer this way
$query = new WP_Query( [
  'orderby' => 'date',
  'posts_per_page' => 6,
  'tax_query' => [
    'relation' => 'AND',
    [
      'taxonomy' => 'category',
      'field'    => 'id',
      'terms'    => array( 76967, 2 ),
      'operator' => 'AND',
    ]
  ]
] );

R
Roman Fear, 2021-10-27
@Kypidon4ik

https://minsknews.by/sovetskij-rajon/ (problematic url) The
request started working (it gave exactly the right entry), but empty entries appeared as in the screenshot leading nowhere

<?php if ($posts) : $counter = 0;?>
                                                <div class="district-news">
                                                    <div class="td_block_wrap td_block_15 td-pb-border-top td_block_template_1 td-column-2 td_block_padding">
                                                        <div class="td-block-title-wrap">
                                                            <h4 class="block-title">
                                                                <span class="td-pulldown-size">Общество</span>
                                                            </h4>
                                                        </div>
                                                        <div class="td_block_inner td-column-2">
                                                             <div class="td-block-row">
                                                               <?php $posts = new WP_Query( [
                                              'orderby' => 'date',
                                              'posts_per_page' => 6,
                                              'tax_query' => [
                                              'relation' => 'AND',
                                                        [
                                                        'taxonomy' => 'category',
                                                        'field'    => 'id',
                                                        'terms'    => array( 76967, 2 ),
                                                        'operator' => 'AND',
                                                                        ]
                                                                        ]
                                                                        ] );?>	
                                                                <?php foreach ($posts as $post) : setup_postdata ($post); $counter++; $thumbnail_attributes = wp_get_attachment_image_src( get_post_thumbnail_id(), 'thumbnail' );?>
                                                                <div class="td-block-span4">
                                                                    <div class="td_module_mx4 td_module_wrap td-animation-stack">
                                                                        <div class="td-module-image">
                                                                            <div class="td-module-thumb">
                                                                                <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>">
                                                                                    <img width="320" height="240" class="entry-thumb" src="<?php echo $thumbnail_attributes[0];?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>">
                                                                                </a>
                                                                            </div>                            
                                                                        </div>
                                                                            <!--<div class="td-module-meta-info">
                                                                                <span class="td-post-date">
                                                                                    <time class="entry-date updated td-module-date" ><?php the_date(); ?></time>
                                                                                </span>            
                                                                            </div>-->
                                                                            <h3 class="entry-title td-module-title">
                                                                                <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
                                                                            </h3>
                                                                    </div>
                                                                </div>

                                                                <?php if($counter % 3 === 0) {echo '</div>
                                                                    <div class="td-block-row">';
                                                                }?>
                                                                <?php endforeach; ?>                                                                
                                                             </div>
                                                        </div>
                                                    </div>
                                                </div>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question