Advertisement
srikat

Untitled

Aug 17th, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. add_action( 'genesis_before_loop', 'sk_latest_post', 15 );
  2. function sk_latest_post() {
  3.  
  4. // WP_Query arguments
  5. $args = array (
  6. 'cat' => get_query_var( 'cat' ),
  7. 'no_found_rows' => true,
  8. 'posts_per_page' => '1',
  9. );
  10.  
  11. if ( is_main_query() ) {
  12. return;
  13. }
  14.  
  15. remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
  16. add_action( 'genesis_entry_header', 'genesis_post_info', 7 );
  17.  
  18. genesis_custom_loop( $args );
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement