wp_sitemaps_posts_pre_url_list WordPress Filter Hook

This hook is called before the sitemap for posts is generated. It can be used to modify the list of posts that will be included in the sitemap.

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

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.


Top ↑

Parameters

$url_list

(array[]|null)The URL list. Default null.

$post_type

(string)Post type name.

$page_num

(int)Page of results.


Top ↑

Source

File: wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
5.5.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.