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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 事件日历PRO:从单个事件页面上显示删除PRO附加字段。相关的知识,希望对你有一定的参考价值。

<?php

/**
 * Events Calendar PRO: Remove PRO Additional Fields from displaying on Single
 * Events page.
 *
 * Because the template for Additional Fields is loaded via anonymous class (no
 * instance to reference), we still load the template for it, but we cause the
 * output to be blank.
 *
 * @link https://gist.github.com/cliffordp/ccd49235d1a8873cca53398fcb67a00c This snippet.
 * @link https://theeventscalendar.com/support/forums/topic/output-of-do_action-tribe_events_single_event_meta_primary_section_end/ Help Desk request.
 */
function cliff_remove_pro_addl_fields_from_single_event_pages( $html, $template, $file, $slug, $name ) {
    if (
        is_singular( Tribe__Events__Main::POSTTYPE )
        && 'pro/modules/meta/additional-fields' === $slug
    ) {
        $html = '';
    }

    return $html;
}

add_action( 'tribe_get_template_part_content', 'cliff_remove_pro_addl_fields_from_single_event_pages', 10, 5 );

以上是关于php 事件日历PRO:从单个事件页面上显示删除PRO附加字段。的主要内容,如果未能解决你的问题,请参考以下文章

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

php 事件日历PRO:从相关的帖子逻辑中删除帖子标签,因此,仅使用事件类别。

php 事件日历PRO:从相关的帖子逻辑中删除帖子标签,因此,仅使用事件类别。

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

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

php 事件日历PRO:照片视图:反转每页事件的显示顺序(即显示相同的事件,仅使用最近的upc