Skip to content

Instantly share code, notes, and snippets.

@bi0xid
Created June 23, 2014 11:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bi0xid/f8149a2235c90ed1295d to your computer and use it in GitHub Desktop.
Save bi0xid/f8149a2235c90ed1295d to your computer and use it in GitHub Desktop.
Add CPT as front page
<?php
add_filter( 'get_pages', 'add_my_cpt' );
function add_my_cpt( $pages )
{
$my_cpt_pages = new WP_Query( array( 'post_type' => 'my_cpt' ) );
if ( $my_cpt_pages->post_count > 0 )
{
$pages = array_merge( $pages, $my_cpt_pages->posts );
}
return $pages;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment