Filter: bricks/default_page_title
Since 1.8, Bricks automatically adds default page titles to all non-Bricks pages. However, if you wish to customize or remove this default page title, you can utilize this filter.
Returning an empty string, disables the default page title.
add_filter( 'bricks/default_page_title', function( $title, $post_id ) { // If slug of current page is 'my-page': Return empty page title if ( is_page( 'my-page' ) ) { $title = ''; }
return $title;}, 10, 2 );Was this helpful?
A quick vote and short notes help us improve these docs faster.
Leave a note for us
Please do not include passwords, license keys, or personal data. We store submitted notes to improve the docs.
Thanks for sharing feedback. We're using it to improve these docs.