Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_sitemaps_add_provider

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
41           /**
42            * Filters the sitemap provider before it is added.
43            *
44            * @since 5.5.0
45            *
46            * @param WP_Sitemaps_Provider $provider Instance of a WP_Sitemaps_Provider.
47            * @param string               $name     Name of the sitemap provider.
48            */
49           $provider = apply_filters( 'wp_sitemaps_add_provider', $provider, $name );
50           if ( ! $provider instanceof WP_Sitemaps_Provider ) {
51                return false;
52           }
53
54           $this->providers[ $name ] = $provider;
55
56           return true;
57      }
58