Browse: Home / Hooks /

learndash_admin_page_title

apply_filters( 'learndash_admin_page_title',  string $title_output )

Filters admin settings page title HTML output.


Description #


Parameters #

$title_output

(string) The admin settings title page.


Source #

File: includes/settings/class-ld-settings-pages.php


Examples #

Note: Extended code example below not guaranteed, you may need to consult with a developer

 <?php
/**
 * Example usage for learndash_admin_page_title filter.
 */
add_filter(
	'learndash_admin_page_title',
	function( $title_output ) {
		// May add any custom logic using $title_output.

		// Always return $title_output.
		return $title_output;
	}
);