Skip to content
Get Bricks

Filter: bricks/frontend/disable_seo

Determines whether Bricks should generate and output SEO meta tags (e.g., description, keywords, robots) and modify the document title. Use this to disable Bricks’ built-in SEO features if you are using a dedicated SEO plugin.

  • $disable (bool): Whether to disable SEO tags.
add_filter( 'bricks/frontend/disable_seo', function( $disable ) {
// Example: Always disable Bricks SEO features
return true;
} );