function custom_posts_per_page( $query ) {
//fixing pagination of custom post type
if ( $query->is_archive('portfolio') ) {
set_query_var('posts_per_page', 1);
}
}
add_action( 'pre_get_posts', 'custom_posts_per_page' );





