LLMS_Admin_Table::output_table_title_html()
Output the HTML for the table’s title.
Return Return
(void)
Source Source
File: includes/abstracts/abstract.llms.admin.table.php
public function output_table_title_html() {
$title = $this->get_title();
if ( $title ) {
echo '<h2 class="llms-table-title">' . esc_html( $title ) . '</h2>';
}
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 7.7.0 | Introduced. |