Skip to content

Instantly share code, notes, and snippets.

@generatepress
Created April 16, 2018 16:49
Show Gist options
  • Save generatepress/b5d7d93599ec7ad515d27974daa3a22c to your computer and use it in GitHub Desktop.
Save generatepress/b5d7d93599ec7ad515d27974daa3a22c to your computer and use it in GitHub Desktop.
Set archives to full width if using Elementor Themer.
add_action( 'wp', function() {
add_filter( 'body_class', function( $classes ) {
if ( function_exists( 'elementor_location_exits' ) && elementor_location_exits( 'archive', true ) ) {
$classes[] = 'full-width-content';
}
return $classes;
} );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment