php 事件日历:事件聚合器:永远不会导入任何场地。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 事件日历:事件聚合器:永远不会导入任何场地。相关的知识,希望对你有一定的参考价值。
<?php
/**
* The Events Calendar: Event Aggregator: Never import any Venues.
*
* @see Tribe__Events__Aggregator__Record__Abstract::insert_posts()
*
* @link https://gist.github.com/cliffordp/f2045efa4b19b39d1b52db5d072b85a7
*/
function cliff_ea_do_not_import_venues( $items, $meta ) {
foreach ( $items as $item ) {
if ( ! empty( $item->venue ) ) {
unset( $item->venue );
}
}
return $items;
}
add_filter( 'tribe_aggregator_before_insert_posts', 'cliff_ea_do_not_import_venues', 10, 2 );
以上是关于php 事件日历:事件聚合器:永远不会导入任何场地。的主要内容,如果未能解决你的问题,请参考以下文章
php 事件日历:事件聚合器:覆盖导入范围默认值。
php 事件日历:事件聚合器:覆盖导入范围默认值。
php 事件日历:事件聚合器:查找缺少所需UID的导入iCal事件。
php 事件日历:事件聚合器:查找缺少所需UID的导入iCal事件。
php 事件日历:事件聚合器:所有导入的事件设置为特定用户作为帖子作者。
php 事件日历:事件聚合器:所有导入的事件设置为特定用户作为帖子作者。