Skip to content

Instantly share code, notes, and snippets.

@robin-scott
Created December 19, 2017 22:19
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 robin-scott/37fe21e51388ace49cbc0fd641498635 to your computer and use it in GitHub Desktop.
Save robin-scott/37fe21e51388ace49cbc0fd641498635 to your computer and use it in GitHub Desktop.
Hide stuff on front page - WordPress PHP code example
// the gist below will hide stuff on the frontpage in wordpress, when added to a theme template file... see https://silicondales.com/tutorials/wordpress-tutorials/code-hide-content-front-page-wordpress/
<?php if( !is_front_page() ) {?>
// hide this stuff
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment