This function has been deprecated. Use astra_check_pagination_enabled() instead.

is_astra_pagination_enabled()

Deprecating is_astra_pagination_enabled function.


Description

Checking if Astra’s pagination enabled.

See also


Return

(bool) true|false


Source

File: inc/core/deprecated/deprecated-functions.php

function is_astra_pagination_enabled() {
	global  $wp_query;

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

Changelog

Changelog
Version Description
3.7.4 Introduced.


User Contributed Notes

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