Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_sitemaps_post_types

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
40           $post_types = array_filter( $post_types, 'is_post_type_viewable' );
41
42           /**
43            * Filters the list of post object sub types available within the sitemap.
44            *
45            * @since 5.5.0
46            *
47            * @param WP_Post_Type[] $post_types Array of registered post type objects keyed by their name.
48            */
49           return apply_filters( 'wp_sitemaps_post_types', $post_types );
50      }
51
52      /**
53       * Gets a URL list for a post type sitemap.
54       *
55       * @since 5.5.0
56       *
57       * @param int    $page_num  Page of results.
58       * @param string $post_type Optional. Post type name. Default empty.