mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
4 lines
134 B
Text
4 lines
134 B
Text
function ele_disable_page_title( $return ) {
|
|
return false;
|
|
}
|
|
add_filter( 'hello_elementor_page_title', 'ele_disable_page_title' );
|