Tribe__Events__Linked_Posts::render_meta_box_sections( $event )
Outputs the metabox form sections for our linked posttypes.
Contents
Parameters
- $event
-
(Required)
Source
File: src/Tribe/Linked_Posts.php
public function render_meta_box_sections( $event ) {
foreach ( $this->linked_post_types as $linked_post_type => $linked_post_type_data ) {
$template = apply_filters( 'tribe_events_linked_post_meta_box_section', $this->main->plugin_path . 'src/admin-views/linked-post-section.php', $linked_post_type );
include $template;
}
}