apply_filters( 'learndash_admin_page_title', string $title_output )
Filters admin settings page title HTML output.
Contents
Description #
Parameters #
- $title_output
-
(string) The admin settings title page.
Source #
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;
}
);