woocommerce/woocommerce.php

26 lines
641 B
PHP
Raw Normal View History

2011-08-10 17:11:11 +00:00
<?php
2012-03-20 13:22:35 +00:00
/**
* Plugin Name: WooCommerce
* Plugin URI: http://www.woothemes.com/woocommerce/
* Description: An e-commerce toolkit that helps you sell anything. Beautifully.
2013-05-02 11:29:20 +00:00
* Version: 2.1-bleeding
2012-03-20 13:22:35 +00:00
* Author: WooThemes
* Author URI: http://woothemes.com
2012-12-18 12:04:33 +00:00
* Requires at least: 3.5
2012-12-13 15:27:47 +00:00
* Tested up to: 3.5
2012-08-07 08:38:08 +00:00
*
2012-03-20 13:22:35 +00:00
* Text Domain: woocommerce
* Domain Path: /i18n/languages/
2012-08-07 08:38:08 +00:00
*
2012-03-20 13:22:35 +00:00
* @package WooCommerce
* @category Core
* @author WooThemes
*/
2012-05-24 11:20:11 +00:00
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2011-08-10 17:11:11 +00:00
if ( ! class_exists( 'WooCommerce' ) ) {
require_once( 'classes/class-woocommerce.php' );
$GLOBALS['woocommerce'] = new WooCommerce();
2011-12-08 12:50:50 +00:00
}