Filter: bricks/frontend/disable_seo
Filter: bricks/frontend/disable_seo
Section titled “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.
Parameters
Section titled “Parameters”$disable(bool): Whether to disable SEO tags.
Example usage
Section titled “Example usage”add_filter( 'bricks/frontend/disable_seo', function( $disable ) { // Example: Always disable Bricks SEO features return true;} ); Was this page helpful?