Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Posts ne s'affichent pas. #9

Open
pierrefarenc opened this issue Oct 20, 2016 · 1 comment
Open

Posts ne s'affichent pas. #9

pierrefarenc opened this issue Oct 20, 2016 · 1 comment

Comments

@pierrefarenc
Copy link

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
Copy link
Author

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant