Filters whether to show the title of the current container in the frontend.
Description
See also
Parameters
- $show_container_title
-
(bool) (Required) Whether to show the title.
- $form_id
-
(int) (Required) Form ID.
Return
(bool) True or false depending on the form setting.
Source
File: src/modules/form-settings/module.php
protected function filter_show_container_title( $show_container_title, $form_id ) { return (bool) $this->get_form_option( $form_id, 'show_container_title', true ); }
Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |