Forum Replies Created

Viewing 1 replies (of 1 total)
  • hi,

    when i create pagination in custom post type
    example
    $paged = get_query_var(‘paged’) ? get_query_var(‘paged’) : 1;
    $args = array( ‘post_type’ => ‘portfolio’, ‘posts_per_page’ => 12 , ‘paged’=> $paged);
    query_posts( $args );
    if ( have_posts() ) : while ( have_posts() ) : the_post();

    custom permalink structure not supported.

    plz help me.

Viewing 1 replies (of 1 total)