What do I miss?
-
I just can’t get the “load more button” to appear. What have I missed? I have a real simple wordpress theme which I have coded myself.
This is the template that I have given to page ” blog”.
<?php /* Template Name: My Awesome Custom Page */ get_header();?> <div> <?php query_posts('showposts=3'); if (have_posts()): while (have_posts()): the_post(); ?> <a style="color:#308651;" href="<?php the_permalink();?>"> <p style="color:#308651;" id="Bowlorama_a_striking_experience"><?php the_title();?> </p></a> <p id="BREAKFAST_BOWL_8_Black_Bean_Cake_Greens_Tomato_Avocado_Pic"> <?php echo get_the_excerpt();?> <br> <a style="color:#308651;" href="<?php the_permalink();?>">Läs mer»</a> </p> <?php endwhile; else: echo '<p>no posts were found</p>'; endif; ?> </div> <?php get_footer(); ?>I also have a wp_head as well as a wp_footer added to my header.php/footer.php file.
I copied [ajax_load_more] into my “blog” page. All files/maps has the read/write access enabled.
Still, no button appear.
The topic ‘What do I miss?’ is closed to new replies.