WP_QUERY自定义域数量小于

时间:2018-09-14 作者:WendiT

帖子有一个自定义字段,带有键时间和值。在模板中,我想查询具有时间键且值小于30的帖子。到目前为止,我所做的一切都没有奏效。

下面是我认为它应该起作用的当前情况,但它不起作用。它输出所有带有关键时间的帖子,不做任何有价值的事情。它是一种抄本,抄本中写道:

显示自定义字段值为数字的帖子。仅显示数字小于10的帖子。(WP\\u Query使用此公式进行比较:$post\\u meta。$args[\'meta\\u compare]。$args[\'meta\\u value\'],其中“$post\\u meta”是存储在每个帖子中的自定义帖子meta的值;实际公式中填写的值:$post\\u meta<;10)

$args = array(
\'post_type\' => \'post\',
\'meta_key\' => \'number\',
\'meta_value_num\' => 10,
\'meta_compare\' => \'<\',
);
$query = new WP_Query( $args );
这是我的密码。如何修复它?

<?php /* Template Name: posts less than 30 secs */
get_header(); 
?>
<div id="content-wrap">

  <?php
  $args = array(
   \'post_type\' => \'post\',
   \'meta_key\' => \'time\',
   \'meta_value_num\' => 30,
   \'meta_compare\' => \'<=\',
   );

$times = new WP_Query($args);  
 if ($times->have_posts()) :
echo \'<h1 class="archive_title">Posts with less than 20 value in time key</h1>\'; ?>
   <div class="post">
    <?php while ($times->have_posts()) : $times->the_post(); ?>
     <div id="post-<?php the_ID(); ?>" <?php post_class(\'clearfix\'); ?>>
       <a href="<?php the_permalink(); ?>"> <?php the_post_thumbnail( array(100,100) ); ?></a>
        <h2 class="title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
          <div class="entry"><?php the_excerpt();  ?></div>
     </div>
    <?php endwhile; ?>
  </div>
<?php get_template_part( \'pagination\' ); ?>
<?php wp_reset_query(); ?>
 <div class="cleaner">&nbsp;</div>
 <?php endif; ?>
</div>
<?php get_footer(); ?>

1 个回复
SO网友:WendiT

args是错误的。正确的代码是:

$args = array(
\'post_type\' => \'post\',
\'meta_key\' => \'time\',
\'meta_value\' => \'30\',
\'meta_compare\' => \'<\',
);
数据存储为字符串而不是数字,因此无需使用meta\\u value\\u num。

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post