Created
April 16, 2018 16:49
-
-
Save generatepress/b5d7d93599ec7ad515d27974daa3a22c to your computer and use it in GitHub Desktop.
Set archives to full width if using Elementor Themer.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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