astra_check_pagination_enabled()

Common function to check is pagination is enabled on current page.


Description


Return

(boolean)


Source

File: inc/core/common-functions.php

function astra_check_pagination_enabled() {
	global  $wp_query;

	return ( $wp_query->max_num_pages > 1 && apply_filters( 'astra_pagination_enabled', true ) );
}

Changelog

Changelog
Version Description
3.0.1 Introduced.


User Contributed Notes

You must log in before being able to contribute a note or feedback.