Posts repeat from post 1 and troubles with styles
-
Hi,
at first, sorry for being a noob, I’ve just started with WordPress and php.
I’m creating a photo-gallery page, installed the Photo-Perfrect WP theme, uploaded photos … and realized the page loads forever, when all the photos are shown on the homepage. So I wanted to use your plugin to keep loading photos as user scrolls down. Everything seemed to be working fine, but there are 2 issues I haven’t managed to solve with my “copypaste” skills…
check my page (keeping it in the wordpress subfolder until I finish it): https://www.nadrchal.com/wordpress/
1. The photo tiles are not in rows, just in 1 column, when the Ajax Load More is used…
2. The posts start from the 1st again once Ajax Load More is used.the code I use (copypasted from the theme) looks like this:
<article id="post-<?php the_ID(); ?>" <?php post_class( 'masonry-entry' ); ?>> <?php $featured_image_full_url = ''; if ( has_post_thumbnail() ) { $featured_image_full_url = wp_get_attachment_url( get_post_thumbnail_id( $post->ID ) ); } ?> <div class="masonry-thumbnail post-item"> <?php if ( has_post_thumbnail() ) : ?> <a href="<?php echo esc_url( $featured_image_full_url ); ?>" class="post-thumb popup-link"> <?php the_post_thumbnail( 'large' ); ?> </a> <?php else : ?> <?php $no_image_url = ''; $random_number = rand( 1, 2 ); $no_image_url = get_template_directory_uri() . '/images/no-image-'. esc_attr( $random_number ). '.png'; ?> <a href="<?php the_permalink(); ?>" class="post-thumb"> <img src="<?php echo esc_url( $no_image_url );?>" alt="<?php the_title_attribute(); ?>" /> </a> <?php endif ?> <div class="post-content"> <?php if ( ! empty( $featured_image_full_url ) ) : ?> <a href="<?php echo esc_url( $featured_image_full_url ); ?>" class="popup-link"><i class="fa fa-eye"></i></a> <?php endif ?> <a href="<?php the_permalink(); ?>"><i class="fa fa-link"></i></a> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> </div> </div><!-- .masonry-thumbnail --> </article>
Can you please help me?
Thanks a lot!
Newbie Tomas
- The topic ‘Posts repeat from post 1 and troubles with styles’ is closed to new replies.