php 事件日历PRO:仅在某些p上设置“仅显示每个周期事件的第一个实例(仅影响列表样式视图)”选项

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 事件日历PRO:仅在某些p上设置“仅显示每个周期事件的第一个实例(仅影响列表样式视图)”选项相关的知识,希望对你有一定的参考价值。

<?php
/**
 * Events Calendar PRO: Set the "Show only the first instance of each recurring event (only affects list-style views)"
 * option only on certain page/post IDs.
 *
 * Useful if you are embedding a List View within a specific page, such as via shortcode or widget, and you want to hide
 * the recurrences ONLY in this context.
 * !!! CHANGE TO YOUR OWN POST IDs WITHIN THIS SNIPPET'S CODE !!!
 *
 * @link https://gist.github.com/cliffordp/69d00ce54929393410e27a319762d241 This snippet.
 * @link https://gist.github.com/andrasguseo/9a0b6c709820e6cd1e20695fc35def31 A very similar snippet for Event Categories.
 */
function cliff_hide_recurrences_on_specific_pages( $hide ) {
	// If already hiding, just go with it.
	if ( $hide ) {
		return $hide;
	}

	global $post;

	// @TODO: Set all your Post/Page/Custom Post Type Post IDs here - where recurrences should be hidden
	$post_ids_to_apply_to = [
		414, // http://example.com/evenemang/
		424, // http://example.com/workshops/
	];

	if (
		! empty( $post->ID )
		&& in_array( $post->ID, $post_ids_to_apply_to )
	) {
		return true;
	} else {
		return $hide;
	}
}

add_filter( 'tribe_events_pro_should_hide_recurrence', 'cliff_hide_recurrences_on_specific_pages' );

以上是关于php 事件日历PRO:仅在某些p上设置“仅显示每个周期事件的第一个实例(仅影响列表样式视图)”选项的主要内容,如果未能解决你的问题,请参考以下文章

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

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

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

php 事件日历和/或PRO:为Google地图设置区域和语言偏差(本例中为澳大利亚)

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

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