Pagebuilder Framework Query Question
-
Hello ,
I didnt find any help on their website so i hope to find it here, my question is how to increase the amount of posts in this particular code snippet -> <?php while ( have_posts() ) : the_post(); ?> i guess that this is the output
<?php if( have_posts() ) : ?> -> and this can be used to controll the outputThank you in advance
<?php do_action( ‘wpbf_main_content_open’ ); ?>
<?php if( have_posts() ) : ?>
<?php wpbf_archive_header(); ?>
<?php do_action( ‘wpbf_before_loop’ ); ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘inc/template-parts/article’ ); ?>
<?php endwhile; ?>
<?php do_action( ‘wpbf_after_loop’ ); ?>
<?php else : ?>
<?php get_template_part( ‘inc/template-parts/article-none’ ); ?>
<?php endif; ?>
<?php do_action( ‘wpbf_main_content_close’ ); ?>
- The topic ‘Pagebuilder Framework Query Question’ is closed to new replies.