Provider::add_block_single_series_pill_marker()
Prints the Series relationship marker to the page, if required.
Return
(void)
Source
File: src/Events_Pro/Custom_Tables/V1/Templates/Provider.php
public function add_block_single_series_pill_marker() {
if ( ! is_singular( TEC::POSTTYPE ) ) {
return;
}
echo $this->container->make( Single_Event_Modifications::class )
->get_series_relationship_pill_marker( get_the_ID() );
}
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |