HEX
Server: Apache
System: Linux 4801f1b1.ptr.provps.com 6.17.8-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 13 18:02:25 EST 2025 x86_64
User: nassaugo (1004)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
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 } ?>