帖子有一个自定义字段,带有键时间和值。在模板中,我想查询具有时间键且值小于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"> </div>
<?php endif; ?>
</div>
<?php get_footer(); ?>