Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generatepress/445e1430db638b6ce4f3ddfb4c2ca9cf to your computer and use it in GitHub Desktop.
Save generatepress/445e1430db638b6ce4f3ddfb4c2ca9cf to your computer and use it in GitHub Desktop.
Set Elementor pages to full width with no title automatically
add_action( 'template_redirect','tu_add_elementor_filter', 999 );
function tu_add_elementor_filter() {
if ( in_array( 'elementor-page elementor-page-' . get_the_ID(), get_body_class() ) ) {
add_filter( 'body_class', 'tu_add_elementor_classes' );
add_filter( 'generate_show_title','__return_false' );
}
}
function tu_add_elementor_classes( $classes ) {
$classes[] = 'full-width-content';
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment