Tribe__Events__Pro__Editor__Meta::hook()
Add filters into the Meta class
Source
File: src/Tribe/Editor/Meta.php
public function hook() {
add_filter( 'get_post_metadata', array( $this, 'fake_blocks_response' ), 15, 4 );
add_filter( 'get_post_metadata', array( $this, 'fake_recurrence_description' ), 15, 4 );
add_action( 'deleted_post_meta', array( $this, 'remove_recurrence_meta' ), 10, 3 );
add_filter( 'tribe_events_pro_show_recurrence_meta_box', array( $this, 'show_recurrence_classic_meta' ), 10, 2 );
add_filter( 'tribe_events_pro_split_redirect_url', array( $this, 'split_series_link' ), 10, 2 );
}
Changelog
| Version | Description |
|---|---|
| 4.5 | Introduced. |