wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_sitemaps_get_server › WordPress Function
Since5.5.0
Deprecatedn/a
› wp_sitemaps_get_server ( No parameters )
Returns: |
|
Defined at: |
|
Codex: |
Retrieves the current Sitemaps server instance.
Related Functions: wp_sitemaps_get_max_urls, rest_get_server, wp_get_referer, wp_scripts_get_suffix, wp_get_server_protocol
Source
function wp_sitemaps_get_server() { global $wp_sitemaps; // If there isn't a global instance, set and bootstrap the sitemaps system. if ( empty( $wp_sitemaps ) ) { $wp_sitemaps = new WP_Sitemaps(); $wp_sitemaps->init(); /** * Fires when initializing the Sitemaps object. * * Additional sitemaps should be registered on this hook. * * @since 5.5.0 * * @param WP_Sitemaps $wp_sitemaps Sitemaps object. */ do_action( 'wp_sitemaps_init', $wp_sitemaps ); } return $wp_sitemaps; }