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.


Top ↑

Return Return

(void)


Top ↑

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">';

	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0-beta.1 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.