Few elements not loading in post snippet when using AJax Load More
-
Hello, Thanks for awesome theme. I am using your theme on my multiple sites from 2020.
I am using Ajax Load more plugin to replace pagination with load more button on home & archive pages in generatepress.
I copied Repeater Template for ajax plugin from theme content.php
you can check below<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> <?php generate_do_microdata( 'article' ); ?>> <div class="inside-article"> <?php /** * generate_before_content hook. * * @since 0.1 * * @hooked generate_featured_page_header_inside_single - 10 */ do_action( 'generate_before_content' ); if ( generate_show_entry_header() ) : ?> <header <?php generate_do_attr( 'entry-header' ); ?>> <?php /** * generate_before_entry_title hook. * * @since 0.1 */ do_action( 'generate_before_entry_title' ); if ( generate_show_title() ) { $params = generate_get_the_title_parameters(); the_title( $params['before'], $params['after'] ); } /** * generate_after_entry_title hook. * * @since 0.1 * * @hooked generate_post_meta - 10 */ do_action( 'generate_after_entry_title' ); ?> </header> <?php endif; /** * generate_after_entry_header hook. * * @since 0.1 * * @hooked generate_post_image - 10 */ do_action( 'generate_after_entry_header' ); $itemprop = ''; if ( 'microdata' === generate_get_schema_type() ) { $itemprop = ' itemprop="text"'; } if ( generate_show_excerpt() ) : ?> <div class="entry-summary"<?php echo $itemprop; // phpcs:ignore -- No escaping needed. ?>> <?php the_excerpt(); ?> </div> <?php else : ?> <div class="entry-content"<?php echo $itemprop; // phpcs:ignore -- No escaping needed. ?>> <?php the_content(); wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'generatepress' ), 'after' => '</div>', ) ); ?> </div> <?php endif; /** * generate_after_entry_content hook. * * @since 0.1 * * @hooked generate_footer_meta - 10 */ do_action( 'generate_after_entry_content' ); /** * generate_after_content hook. * * @since 0.1 */ do_action( 'generate_after_content' ); ?> </div> </article>
Load more button is working by using this repeater template. But, the only problem I am getting is “date, by author” after post title
&
“category, tag & leave a comment” after read more are not showing.
Post title, featured image & post excerpt showing.
Can anyone please tell me changes to make in above code to show “date, by author, category, tag & leave a comment” ?
Thanks in Advance
- The topic ‘Few elements not loading in post snippet when using AJax Load More’ is closed to new replies.