Initial Commit

This commit is contained in:
Rumperuu 2018-03-21 18:19:20 +00:00
parent 4c352bf02e
commit 1ab6e5f0b0
1085 changed files with 195258 additions and 0 deletions

View 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';
}