wpseek.com
A WordPress-centric search engine for devs and theme authors



block_core_breadcrumbs_is_paged › WordPress Function

Since7.0.0
Deprecatedn/a
block_core_breadcrumbs_is_paged ( No parameters )
Returns:
  • (bool) True if paged > 1, false otherwise.
Defined at:
Codex:

Checks if we're on a paginated view (page 2 or higher).



Source

function block_core_breadcrumbs_is_paged() {
	$paged = (int) get_query_var( 'paged' );
	return $paged > 1;
}