1 2 3 4 5 6 7 8 9 | remove_action( 'genesis_loop' , 'genesis_do_loop' ); add_action( 'genesis_loop' , 'custom_loop' ); function custom_loop() { global $paged ; $args = array ( 'order' => 'asc' ); genesis_custom_loop( $args ); } |
Leave a Reply