Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jayseventwo/5449545 to your computer and use it in GitHub Desktop.
Save jayseventwo/5449545 to your computer and use it in GitHub Desktop.
Remove sidebar from front page of WordPress Roots theme. Add to custom.php
<?php
if (is_front_page()) {
} else {
get_sidebar();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment