LLMS_Rest_Admin_Settings_Page::output_title_field( array $field )
Outputs a custom “title” field with HTML content as the settings section title.
Parameters Parameters
- $field
-
(array) (Required) Settings field arguments.
Return Return
(void)
Source Source
File: libraries/lifterlms-rest/includes/admin/class-llms-rest-admin-settings-page.php
public function output_title_field( $field ) { echo '<p class="llms-label">' . esc_html( $field['title'] ) . ' ' . $field['html'] . '</p>'; echo '<table class="form-table">'; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.0.0-beta.1 | Introduced. |