Code-Snippets-Functions/Execute a function on a child site/Hello Elementor/globally-disable-page-titles.txt

4 lines
134 B
Text

function ele_disable_page_title( $return ) {
return false;
}
add_filter( 'hello_elementor_page_title', 'ele_disable_page_title' );