Created
May 30, 2011 09:25
-
-
Save bueltge/998648 to your computer and use it in GitHub Desktop.
Example for add a Custom Post Type to the WordPress Loop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add custom post type to wp loop | |
add_action( 'pre_get_posts', 'add_to_query' ); | |
// ads to query | |
function add_to_query( $query ) { | |
if ( is_admin() || is_preview() ) | |
return; | |
// only filter on front page | |
if ( is_home() || is_front_page() && ( FALSE == $query -> query_vars['suppress_filters'] ) ) { | |
$query->set( 'post_type', array( 'post', 'my_post_type' ) ); | |
return $query; | |
} |
@gr4y: also here a Thanks! - i have fixed the source.
And I've found another issue. Simply add a check if is_page() and then your pages will work again. ;-)
I think it is better you use is_singular() for posts and pages or use the line 11 for only add the filter on a specific sceanrio - id ( ! is_singular() && ( FALSE == $query -> query_vars['suppress_filters'] ) ) .
Hook int correcty is an action --> add_action(); not add_filter() - Sorry; its fixed on example
Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I just found out that my preview is not working. And here is the fix:
instead of
;-)