Provider::remove_recurring_marker()

Removes the recurring marker from the block event single.


Return

(void)


Top ↑

Source

File: src/Events_Pro/Custom_Tables/V1/Templates/Provider.php

	public function remove_recurring_marker() {
		if ( ! is_singular( TEC::POSTTYPE ) ) {
			return;
		}

		$this->container->make( Single_Event_Modifications::class )->do_not_render_recurring_marker();
	}

Top ↑

Changelog

Changelog
Version Description
6.0.0 Introduced.