Provider::save_show_series_title( int $post_id )
Saves the value for the checkbox to hide/show the title on views.
Contents
Parameters
- $post_id
-
(int) (Required) The post ID of the Event currently being saved.
Return
(void)
Source
File: src/Events_Pro/Custom_Tables/V1/Series/Provider.php
public function save_show_series_title( $post_id ) {
update_post_meta(
$post_id,
'_tec-series-show-title',
tribe_get_request_var( '_tec-series-show-title', false )
);
}
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |