File: /home/nassaugo/public_html/wp-content/plugins/blog-designer-pack/templates/pagination.php
<?php
/**
* Pagination Template
*
* @package Blog Designer Pack
* @since 1.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if( $atts['pagination'] && $atts['max_num_pages'] > 1 ) { ?>
<div class="bdpp-paging bdpp-clearfix">
<?php if( $atts['shortcode'] == 'bdp_masonry' ) {
if( $atts['paged'] < $atts['max_num_pages'] ) {
?>
<div class="bdpp-load-more bdpp-post-load-more bdpp-ajax-btn-style" data-conf="<?php echo htmlspecialchars( bdp_shortcode_conf( $atts ) ); ?>" data-paged="<?php echo esc_attr( $atts['paged'] ); ?>"><?php esc_html_e( 'Load More', 'blog-designer-pack' ); ?> <i class="fa fa-chevron-down bdpp-load-more-icon"></i> <span class="bdpp-loader"></span></div>
<?php } } else {
echo bdp_pagination( array( 'paged' => $atts['paged'], 'total' => $atts['max_num_pages'], 'multi_page' => $atts['multi_page'] ), $atts );
} ?>
</div>
<?php } ?>