Skip to content

Commit

Permalink
Initial commit of version 1.1.6 from http://plugins.svn.wordpress.org…
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Mathias committed Oct 5, 2012
0 parents commit 074c887
Show file tree
Hide file tree
Showing 37 changed files with 5,409 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bwp-simple-gxs-ms.php
@@ -0,0 +1,3 @@
<?php
include_once(dirname(__FILE__). '/bwp-google-xml-sitemaps/bwp-simple-gxs.php');
?>
31 changes: 31 additions & 0 deletions bwp-simple-gxs.php
@@ -0,0 +1,31 @@
<?php
/*
Plugin Name: BWP Google XML Sitemaps
Plugin URI: http://betterwp.net/wordpress-plugins/google-xml-sitemaps/
Description: A more lightweight Google XML Sitemap WordPress plugin that generates a <a href="http://en.wikipedia.org/wiki/Sitemap_index">Sitemap index</a> rather than a single sitemap. Despite its simplicity, it is still very powerful and has plenty of options to choose.
Version: 1.1.6
Text Domain: bwp-simple-gxs
Domain Path: /languages/
Author: Khang Minh
Author URI: http://betterwp.net
License: GPLv3
*/

// Pre-emptive
$bwp_gxs_ob_level = @ob_get_level();
$bwp_gxs_ob_start = ob_start();

// Frontend
require_once(dirname(__FILE__) . '/includes/class-bwp-simple-gxs.php');
$bwp_gxs_gzipped = (!BWP_SIMPLE_GXS::is_gzipped()) ? false : true;
$bwp_gxs = new BWP_SIMPLE_GXS();

// Backend
add_action('admin_menu', 'bwp_gxs_init_admin', 1);

function bwp_gxs_init_admin()
{
global $bwp_gxs;
$bwp_gxs->init_admin();
}
?>

0 comments on commit 074c887

Please sign in to comment.