wordpress-ajax-posts-loader icon indicating copy to clipboard operation
wordpress-ajax-posts-loader copied to clipboard

Posts ne s'affichent pas.

Open pierrefarenc opened this issue 9 years ago • 1 comments

Je vois que quand je clique sur le bouton "Charger plus d’actualités » dans la console, les pages se chargent en revanche en front rien ne se passe.

Voici mon code dans mon fichier index.php :

<?php get_header(); ?>

<div id="i-scroll">
    <?php if (have_posts()) : ?>
    <?php while( have_posts() ) {
        the_post();
        get_template_part( 'article', get_post_format() ); } ?>
    <?php else : ?>
    <p>Il n'y a pas d'article à afficher !</p>
    <?php endif; ?>
</div>

<div class="ma-pagination">
    <div class="nav-previous alignleft"><?php next_posts_link( 'Older posts' ); ?></div>
    <div class="nav-next alignright"><?php previous_posts_link( 'Newer posts' ); ?></div>
</div>

<?php get_footer(); ?>

Voici mon code dans mon fichier article.php :

<a class="article" href="<?php the_permalink(); ?>">
    <div class="bloc-actu">
        <div class="container">
            <div class="row">
                <div class="col-sm-10 col-sm-offset-1">
                    <span class="label-category label-cat-<?php foreach((get_the_category()) as $category) { echo $category->cat_ID . ' '; } ?>"><?php foreach((get_the_category()) as $category) { echo $category->cat_name . ' '; } ?></span>
                    <h2><?php echo get_the_title(); ?></h2>
                    <p>Découvrez le premier baromètre des patients en partenariat avec l’institut de sondage BVA Santé</p>
                </div>
            </div>
        </div>
    </div>
</a>

Du coup je n’arrive pas à comprendre pourquoi ça ne fonctionne pas. =/ Voici le lien ou le site est actuellement : http://pier17.fr/blog-hospi/ J’ai fait la bonne config au niveau du plugin Si vous avez une solution je suis preneur car la je suis totalement perdu.

pierrefarenc avatar Oct 20 '16 09:10 pierrefarenc

capture d ecran 2016-10-19 a 14 47 38 capture d ecran 2016-10-19 a 14 52 39

pierrefarenc avatar Oct 20 '16 09:10 pierrefarenc