forked from woocommerce/testimonials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwoothemes-testimonials.php
More file actions
23 lines (22 loc) · 916 Bytes
/
Copy pathwoothemes-testimonials.php
File metadata and controls
23 lines (22 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* Plugin Name: Testimonials
* Plugin URI: http://woothemes.com/
* Description: Hi, I'm your testimonials management plugin for WordPress. Show off what your customers or website users are saying about your business and how great they say you are, using our shortcode, widget or template tag.
* Author: WooThemes
* Version: 1.5.4
* Author URI: http://woothemes.com/
* Text Domain: testimonials-by-woothemes
*
* @package WordPress
* @subpackage Woothemes_Testimonials
* @author Matty
* @since 1.0.0
*/
require_once( 'classes/class-woothemes-testimonials.php' );
require_once( 'classes/class-woothemes-testimonials-taxonomy.php' );
require_once( 'woothemes-testimonials-template.php' );
require_once( 'classes/class-woothemes-widget-testimonials.php' );
global $woothemes_testimonials;
$woothemes_testimonials = new Woothemes_Testimonials( __FILE__ );
$woothemes_testimonials->version = '1.5.4';