srikat

Untitled

Aug 17th, 2016
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 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. remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
  12. add_action( 'genesis_entry_header', 'genesis_post_info', 7 );
  13.  
  14. genesis_custom_loop( $args );
  15.  
  16. remove_action( 'genesis_entry_header', 'genesis_post_info', 7 );
  17. add_action( 'genesis_entry_header', 'genesis_post_info', 12 );
  18. }
Advertisement
Add Comment
Please, Sign In to add comment