Hooks::add_actions()

Add actions for all the shortcode related stuff.

Contents


Source

File: src/Tribe/Views/V2/Shortcodes/Hooks.php

	public function add_actions() {
		add_action( 'init', [ $this, 'action_disable_shortcode_v1' ], 15 );
		add_action( 'init', [ $this, 'action_add_shortcodes' ], 20 );
		add_action( 'tribe_events_pro_shortcode_tribe_events_after_assets', [ $this, 'action_disable_shortcode_assets_v1' ] );
		add_action( 'tribe_events_views_v2_before_make_view_for_rest', [ $this, 'action_shortcode_toggle_hooks' ], 10, 3 );
	}

Top ↑

Changelog

Changelog
Version Description
5.5.0 Introduced.