Created
October 1, 2017 14:33
-
-
Save weartstudio/6c65d7644361a995339263551a7a01e9 to your computer and use it in GitHub Desktop.
WordPress: Hide content from home if paged.
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
<?php if( is_home() && !is_paged() ) : ?> | |
<!-- The content what do you want to hide. --> | |
<?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment