Skip to content

Instantly share code, notes, and snippets.

@freezvd
Forked from jamiemitchell/front-page.php
Last active August 29, 2015 14:06
Show Gist options
  • Save freezvd/b28d51270740f4db85be to your computer and use it in GitHub Desktop.
Save freezvd/b28d51270740f4db85be to your computer and use it in GitHub Desktop.
<?php
remove_action('genesis_loop', 'genesis_do_loop');
add_action('genesis_loop', 'custom_do_loop');
function custom_do_loop() {
global $paged;
$args = array(
'post_type' => 'portfolio',
'order' => 'DESC',
'posts_per_page' => 4
);
genesis_custom_loop( $args );
}
genesis();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment