php 事件日历PRO:即使对于tribe_events短代码,也使tribe_is_week()返回TRUE。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 事件日历PRO:即使对于tribe_events短代码,也使tribe_is_week()返回TRUE。相关的知识,希望对你有一定的参考价值。

<?php

/**
 * The Events Calendar PRO: Make tribe_is_week() return TRUE even for
 * tribe_events shortcode.
 *
 * @link https://gist.github.com/cliffordp/7b48b2e6a0562709cf9d069f38cfdcee
 * @link https://gist.github.com/GeoffEW/dff981933c950aebc3045b827eddc101 or something like it could be used alongside this snippet.
 * @link https://central.tri.be/issues/91891
 */
add_action ('tribe_events_pro_tribe_events_shortcode_prepare_week', function() {
	add_filter( 'tribe_is_week', function() {
		return true;
	});
});

以上是关于php 事件日历PRO:即使对于tribe_events短代码,也使tribe_is_week()返回TRUE。的主要内容,如果未能解决你的问题,请参考以下文章

php 事件日历PRO:从单个事件页面上显示删除PRO附加字段。

php 事件日历PRO:从单个事件页面上显示删除PRO附加字段。

php 事件日历PRO:限制地图视图默认仅显示今天的事件。

php 事件日历PRO:限制地图视图默认仅显示今天的事件。

php 事件日历PRO:在日视图上输出附加字段元信息。

php 事件日历PRO:在日视图上输出附加字段元信息。