Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tjhole/4f5cd39b4747363d72a9 to your computer and use it in GitHub Desktop.
Save tjhole/4f5cd39b4747363d72a9 to your computer and use it in GitHub Desktop.
WORDPRESS: Custom Post Type Front Page - 2014
function wpa18013_add_pages_to_dropdown( $pages, $r ){
if('page_on_front' == $r['name']){
$args = array(
'post_type' => 'stack'
);
$stacks = get_posts($args);
$pages = array_merge($pages, $stacks);
}
return $pages;
}
add_filter( 'get_pages', 'wpa18013_add_pages_to_dropdown', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment