获得多个帖子的多个帖子

时间:2013-08-20 15:34:24

标签: wordpress

我有一个包含多个slug(帖子名称)的数组,我想得到slug在数组中的所有帖子。

我使用Event Organsier并希望获得所有活动这些slu ..我没有使用过WordPress几年,所以我需要一些帮助。

$events = eo_get_events(array(
 'numberposts'=>5,
 'event_start_after'=> $year.'-'.$month.'-'.$list_day,
 'event_end_before'=> $year.'-'.$month.'-'.$list_day,
 'showpastevents'=>false,//Will be deprecated, but set it to true to play it safe.
 'tax_query' => array(
    array(
        'taxonomy'  => 'category',
        'field'     => 'slug',
        'terms'     => array('slug-example-1', 'slug-example-2'),
        'operator'  => 'IN'
    )
 )

));

这应该(imo)返回所有具有slug-example-1或slug-example-2的slug的帖子。

我甚至不知道tax_query / taxonomy是否适合使用。

1 个答案:

答案 0 :(得分:0)

您可以将@Component @PropertySource("file:/tmp/init.txt") class CronSchedule { private static final Logger log = LoggerFactory.getLogger(CronSchedule.class); private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss"); @Scheduled(fixedRateString = "${fixrate}") public void reportCurrentTime() { log.info("The time is now {}", dateFormat.format(new Date())); } } 参数与post_name__in结合使用,自版本4.4起可用。
例如。 :

get_posts()