WordPress : La pagination ne fonctionne pas dans le type de publication personnalisé

Publié par Jean-Michel le

La partie de modèle de pagination inclut une fonction de pagination commune avec style. La partie de modèle fonctionne pour archive.php (c’est pour « unique », vous connaissez le fichier wp par défaut) mais ne fonctionne pas pour le type de publication personnalisé.

Pourquoi? comment le résoudre?

<?php get_header(); ?>



<main role="main">
    <!-- section -->
    <?php get_template_part( 'breadcrumb' );?>

    <!-- Inner Pages Main Section -->
    <section class="ulockd-service-details">
        <div class="container">
            <div class="col-md-12">
                <div class="row">

                    <?php

                    /**
                     * Setup query to show the ‘services’ post type with ‘8’ posts.
                     * Output the title with an excerpt.
                     */
                    $args = array(
                        'post_type' => 'team',
                        'post_status' => 'publish',
                        'posts_per_page' => 1,
                    );

                    $loop = new WP_Query( $args );

                    if (have_posts()): while ( $loop->have_posts() ) : $loop->the_post();

                    ?>

                    <?php //if (have_posts()): while (have_posts()) : the_post(); ?>


                        <?php

                        if ( $thumbnail_id = get_post_thumbnail_id() ) {
                            if ( $image_src = wp_get_attachment_image_src( $thumbnail_id, 'normal-bg' ) )
                                ?>

                                <div class="col-md-12 ulockd-mrgn1210">
                                <div class="ulockd-project-sm-thumb">
                                <img class="img-responsive img-whp" src="<?php printf( '%s', esc_url($image_src[0]) ); ?>" alt="">
                            </div>
                            </div>

                            <?php

                        }

                        ?>





                        <div class="col-md-12 ulockd-mrgn1210">
                            <article class="ulockd-pd-content">
                                <div class="ulockd-bp-date">
                                    <ul class="list-inline">
                                        <li class="ulockd-bp-date-innner">On <a href="#"><span class="text-thm2"><?php the_time('j'); ?></span> / <?php the_time('F Y') ?></a></li>
                                        <li class="ulockd-bp-comment"><a href="#"><span class="flaticon-nurse-head text-thm1"></span> <?php the_author_posts_link(); ?></a></li>
                                        <li class="ulockd-bp-comment"><a href="#"><span class="flaticon-chat text-thm1"></span> <?php if (comments_open( get_the_ID() ) ) comments_popup_link( __( 'Leave your thoughts', 'html5blank' ), __( '1 Comment', 'html5blank' ), __( '% Comments', 'html5blank' )); ?></a></li>
                                        <li class="ulockd-bp-comment"><a href="#"><span class="flaticon-black-check-box text-thm1"></span> <?php the_category(); ?></a></li>
                                    </ul>
                                </div>
                                <h3><?php the_title(); ?> </h3>
                                <p class="project-dp-one"><?php html5wp_excerpt('html5wp_index'); // Build your custom callback length in functions.php ?></p>
                                <a class="btn btn-lg ulockd-btn-thm2" href="<?php the_permalink(); ?>"> Read More</a>
                            </article>
                        </div>

                        <?php get_template_part('pagination'); ?>
                    <?php endwhile; ?>

                    <?php else: ?>
                        <article>
                            <h2><?php _e( 'Sorry, nothing to display.', 'html5blank' ); ?></h2>
                        </article>
                    <?php endif; ?>

                </div></div></div></section>



    <?php get_footer(); ?>
</main>

Solution n°1 trouvée

Les modèles d’archives de taxonomie ne doivent pas nécessiter de fichier WP_Query. WordPress interroge automatiquement les bons articles. Utilisez simplement la boucle principale, sans $loop-> . Vous l’aviez déjà fait mais l’avez commenté pour une raison quelconque.

<?php get_header(); ?>

<main role="main">
    <!-- section -->
    <?php get_template_part( 'breadcrumb' );?>

    <!-- Inner Pages Main Section -->
    <section class="ulockd-service-details">
        <div class="container">
            <div class="col-md-12">
                <div class="row">
                    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                        <?php
                        if ( $thumbnail_id = get_post_thumbnail_id() ) {
                            if ( $image_src = wp_get_attachment_image_src( $thumbnail_id, 'normal-bg' ) ) {
                                ?>
                                <div class="col-md-12 ulockd-mrgn1210">
                                    <div class="ulockd-project-sm-thumb">
                                        <img class="img-responsive img-whp" src="<?php printf( '%s', esc_url($image_src[0]) ); ?>" alt="">
                                    </div>
                                </div>
                                <?php
                            }
                        }
                        ?>

                        <div class="col-md-12 ulockd-mrgn1210">
                            <article class="ulockd-pd-content">
                                <div class="ulockd-bp-date">
                                    <ul class="list-inline">
                                        <li class="ulockd-bp-date-innner">On <a href="#"><span class="text-thm2"><?php the_time('j'); ?></span> / <?php the_time('F Y') ?></a></li>
                                        <li class="ulockd-bp-comment"><a href="#"><span class="flaticon-nurse-head text-thm1"></span> <?php the_author_posts_link(); ?></a></li>
                                        <li class="ulockd-bp-comment"><a href="#"><span class="flaticon-chat text-thm1"></span> <?php if (comments_open( get_the_ID() ) ) comments_popup_link( __( 'Leave your thoughts', 'html5blank' ), __( '1 Comment', 'html5blank' ), __( '% Comments', 'html5blank' )); ?></a></li>
                                        <li class="ulockd-bp-comment"><a href="#"><span class="flaticon-black-check-box text-thm1"></span> <?php the_category(); ?></a></li>
                                    </ul>
                                </div>
                                <h3><?php the_title(); ?> </h3>
                                <p class="project-dp-one"><?php html5wp_excerpt('html5wp_index'); // Build your custom callback length in functions.php ?></p>
                                <a class="btn btn-lg ulockd-btn-thm2" href="<?php the_permalink(); ?>"> Read More</a>
                            </article>
                        </div>

                        <?php get_template_part('pagination'); ?>
                    <?php endwhile; ?>

                    <?php else: ?>
                        <article>
                            <h2><?php _e( 'Sorry, nothing to display.', 'html5blank' ); ?></h2>
                        </article>
                    <?php endif; ?>
                </div>
            </div>
        </div>
    </section>

    <?php get_footer(); ?>
</main>

Catégories : Wordpress

Jean-Michel

Jean-Michel est en charge de la partie blog du site. Il met en place la stratégie de contenu et répond aux questions fréquentes sur Wordpress.

0 commentaire

Laisser un commentaire

Avatar placeholder

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *