apply_filters( ‘wp_sitemaps_posts_pre_url_list’, array[]|null $url_list, string $post_type, int $page_num )

In this article

Filters the posts URL list before it is generated.

Description

Returning a non-null value will effectively short-circuit the generation, returning that value instead.

Parameters

$url_listarray[]|null
The URL list. Default null.
$post_typestring
Post type name.
$page_numint
Page of results.

Source

$url_list = apply_filters(
	'wp_sitemaps_posts_pre_url_list',
	null,
	$post_type,
	$page_num
);

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

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