php 事件日历:从wp-admin事件编辑屏幕中删除管理器的一种方法。可能会产生其他意想不到的后果;需要测试
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 事件日历:从wp-admin事件编辑屏幕中删除管理器的一种方法。可能会产生其他意想不到的后果;需要测试相关的知识,希望对你有一定的参考价值。
<?php
/**
* The Events Calendar: One way to remove Organizers from the wp-admin event
* edit screen. May have other unintended consequences; requires testing.
*
* @link https://gist.github.com/cliffordp/5a64d8757c5eded81671b7548896f0ef
* @link https://theeventscalendar.com/support/forums/topic/removing-fields/
*
* @param array $default_post_types
*
* @return array
*/
add_filter( 'tribe_events_register_default_linked_post_types', function ( $default_post_types ) {
foreach ( $default_post_types as $key => $value ) {
if ( Tribe__Events__Main::ORGANIZER_POST_TYPE == $value ) {
unset( $default_post_types[ $key ] );
}
}
return $default_post_types;
} );
以上是关于php 事件日历:从wp-admin事件编辑屏幕中删除管理器的一种方法。可能会产生其他意想不到的后果;需要测试的主要内容,如果未能解决你的问题,请参考以下文章
php 检查是否在wp-admin事件编辑屏幕上
php 事件日历:所有Venue slugs都以自定义字符串为前缀。适用于wp-admin和社区活动。
php 事件故障单 - 从wp-admin表中删除签入的参加者
php 事件故障单 - 从wp-admin表中删除签入的参加者
从 Google 服务帐户编辑 Google 日历事件:403
php 事件日历:从“事件”中删除“组织者”帖子类型