Skip to content

Instantly share code, notes, and snippets.

@kadimi
Last active June 3, 2022 15:11
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 kadimi/df7d8e9ad58333616bc437afa4868843 to your computer and use it in GitHub Desktop.
Save kadimi/df7d8e9ad58333616bc437afa4868843 to your computer and use it in GitHub Desktop.
Remove the sidebar from the front page only - Compatible with ThemeBoy themes.
<?php
/**
* Remove the sidebar from the front page only - Compatible with ThemeBoy themes.
*
* @author Nabil Kadimi
*/
add_filter( 'option_themeboy', function( $value ) {
return is_front_page() ? [ 'sidebar' => 'no' ] + ( array ) $value : $value;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment