热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

php活动日历获取下一个即将举行的特色活动

本文由编程笔记#小编为大家整理,主要介绍了php活动日历-获取下一个即将举行的特色活动相关的知识,希望对你有一定的参考价值。
本文由编程笔记#小编为大家整理,主要介绍了php 活动日历 - 获取下一个即将举行的特色活动相关的知识,希望对你有一定的参考价值。




/**
* The Events Calendar - Get the next upcoming Featured Event
*
* Notes:
* 1) Ignores all-day events.
* 2) For the date comparison, this code assumes each event is in
* the same timezone as your WordPress General Settings timezone.
*
* @link https://gist.github.com/cliffordp/1b8c808efa4256ebcef2d8805f069595
* @link https://theeventscalendar.com/support/forums/topic/pull-in-latest-featured-event/
* @link https://make.wordpress.org/core/2014/08/29/a-more-powerful-order-by-in-wordpress-4-0/
* @link https://theeventscalendar.com/knowledgebase/using-tribe_get_events/
*/
$args = array(
'eventDisplay' => 'custom',
'posts_per_page' => 1,
'meta_query' => array(
'relation' => 'AND',
'featured' => array(
'key' => Tribe__Events__Featured_Events::FEATURED_EVENT_KEY,
'compare' => 'EXISTS',
),
'start_date' => array(
'key' => '_EventStartDate',
'value' => current_time( 'mysql' ),
'compare' => '>=',
'type' => 'DATETIME',
),
),
'orderby' => array(
'start_date' => 'ASC',
),
);
$events = tribe_get_events( $args );


推荐阅读
author-avatar
翻版的袁城
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有