Page title filter not working
-
Tried to use the filter to change the page title:
function ocdi_plugin_page_setup( $default_settings ) { $default_settings['page_title'] = esc_html__( 'Theme Demos' , 'text-domain' ); return $default_settings; } add_filter( 'pt-ocdi/plugin_page_setup', 'ocdi_plugin_page_setup' );
Doesn’t work, because the
apply_filters
is actually not there in the plugin ??I would like to remove the dashicons from the title too. None of WordPress pages have a dashicon in the page title.
Would highly appreciate your help. Thanks!
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Page title filter not working’ is closed to new replies.