将WordPress事件加载到完整日历jQuery中

时间:2018-05-26 作者:Raf

我正在尝试将我的自定义帖子类型事件加载到jquery插件完整日历中,但没有任何效果。我用这段代码制作了一个php文件

include "wp-load.php";
global $wpdb;
header(\'Content-Type:application/json\');
$events = array();
$result = new WP_Query(\'post_type=events&posts_per_page=-1\');
foreach($result->posts as $post) {
$events[] = array(
\'title\'   => $post->post_title,
\'start\'   => \'2018-03-12T20:00:00\',

);
}
echo json_encode($events);
exit;
但它没有加载任何内容

1 个回复
SO网友:dhirenpatel22

已经检查了您的代码,但无法了解代码的实际错误。

另一种可能的解决方案是,您可以使用第三方WordPress插件WP Full Calendar 并在插件设置中选择您的帖子类型。然后,您可以使用短代码在任何网站页面/帖子中显示完整日历。

WP完整日历:https://wordpress.org/plugins/wp-fullcalendar/

enter image description here

结束