WP Show Custom Post Type posts in your blog
Warning: fopen(/home/niels/domains/nielsmusschoot.com/public_html/wp-content/plugins/fv-code-highlighter/cache/9d839d3f46af1c03330d51307bf4e3a0977ebd2b) [function.fopen]: failed to open stream: Permission denied in /home/niels/domains/nielsmusschoot.com/public_html/wp-content/plugins/fv-code-highlighter/Includes/Cache.php on line 69
1 2 3 4 5 6 7 8 9 10 11 12
add_filter( 'pre_get_posts', 'my_get_posts' );
function my_get_posts( $query ) {
if ( is_home() || is_single() )
$query->set( 'post_type', array( 'post', 'custom-post' ) );
return $query;
}





















