I created custom post type and i would like to use it the same way as the regular posts. I managed to add them on the first page by adding this code to the functions.php file
Code: 
add_filter( 'pre_get_posts', 'my_get_posts' );

function my_get_posts( $query ) {
	if ( is_home() )
		$query->set( 'post_type', array( 'post', 'anime', '13' ) );

	return $query;
}
but it a little different from normal posts.
How can i make them the same?
First post is custom type others are normal.
Site: Anime-Pirate.org
Theme: Suffusion
http://wordpress.org/extend/themes/suffusion
CK13 Reviewed by CK13 on . Custom post type as normal posts I created custom post type and i would like to use it the same way as the regular posts. I managed to add them on the first page by adding this code to the functions.php file add_filter( 'pre_get_posts', 'my_get_posts' ); function my_get_posts( $query ) { if ( is_home() ) $query->set( 'post_type', array( 'post', 'anime', '13' ) ); return $query; } but it a little different from normal posts. Rating: 5