如何使用自定义字段查询当前日期月份的帖子:
这是我的密码
<?php
global $wp_query;
$event_month = get_post_meta($wp_query->post->ID, \'eventdate\', true); //format in db 11/17/2010
$event_month = date("n"); //A numeric representation of a month, without leading zeros (1 to 12)
$today= getdate(); ?>
<?php query_posts(\'meta_key=\'.$event_month .\'&meta_compare&meta_value=\' .$today["mon"]);?>
<?php while (have_posts()): the_post(); ?>
<div class="event-list-txt">
<h4><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark">
<?php the_title(); ?>
</a></h4>
<?php the_content(); //Display the content?>
</div>
<?php endwhile; ?>
<?php wp_reset_query();?>
但它不显示输出。我要显示的是当月的事件列表。。例如,如果是11月,它将显示11月的事件列表,当12月到来时,它将显示12月的事件列表,依此类推。与当前日期相比,事件列表日期具有如下自定义字段格式:2010年11月17日
以下是额外的预期输出
当前日期为11月,事件列表应如下所示:
+-----------------------+-------------+
| Event Name | Date |
+-----------------------+-------------+
| ABC Market opening | 11/18/2010 |
| ABC Market Seminar | 11/25/2010 |
| ABC Market Promo | 11/29/2010 |
+-----------------------+-------------+
谢谢各位