Initial commit
This commit is contained in:
commit
28e6ddf404
1083 changed files with 191734 additions and 0 deletions
26
plugins/jetpack/modules/sitemaps.php
Normal file
26
plugins/jetpack/modules/sitemaps.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Module Name: Sitemaps
|
||||
* Module Description: Creates sitemaps to allow your site to be easily indexed by search engines.
|
||||
* Sort Order: 13
|
||||
* First Introduced: 3.9
|
||||
* Requires Connection: No
|
||||
* Auto Activate: Public
|
||||
* Module Tags: Recommended, Traffic
|
||||
* Additional Search Queries: sitemap, traffic, search, site map, seo
|
||||
*/
|
||||
|
||||
/**
|
||||
* Check site privacy before activating sitemaps.
|
||||
*
|
||||
* @module sitemaps
|
||||
*/
|
||||
function jetpack_sitemaps_activate() {
|
||||
Jetpack::check_privacy( __FILE__ );
|
||||
}
|
||||
|
||||
add_action( 'jetpack_activate_module_sitemaps', 'jetpack_sitemaps_activate' );
|
||||
|
||||
if ( '1' == get_option( 'blog_public' ) ) {
|
||||
include_once 'sitemaps/sitemaps.php';
|
||||
}
|
Reference in a new issue