Created
June 16, 2015 23:19
-
-
Save benweiser/4fe627ee85da6e1b3634 to your computer and use it in GitHub Desktop.
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
| // See if we're on the blog post home page and if there are posts | |
| if ( is_home() && have_posts()) { | |
| // Get what page we are on, if not assume first page. | |
| $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; | |
| if( 1 == $paged ) { | |
| add_action('genesis_before_loop','bw_paged_widget'); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment