forked from strategio/wpsidecomments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwp-side-comments.php
53 lines (45 loc) · 2.01 KB
/
wp-side-comments.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
* The WordPress Plugin Boilerplate.
*
* A foundation off of which to build well-documented WordPress plugins that
* also follow WordPress Coding Standards and PHP best practices.
*
* @package WP_Side_Comments
* @author Pierre SYLVESTRE <[email protected]>
* @license GPL-2.0+
* @link http://www.strategio.fr
* @copyright 2014 Strategio
*
* @wordpress-plugin
* Plugin Name: WP Side Comments
* Plugin URI: http://www.strategio.fr
* Description: WP Side Comments create a new way to display comments like in medium.com network. It's based on SideComment.js
* Version: 1.0.5
* Author: Pierre SYLVESTRE
* Author URI: http://www.strategio.fr
* Text Domain: wp-side-comments
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /languages
* GitHub Plugin URI: https://github.com/strategio/wp-side-comments
* WordPress-Plugin-Boilerplate: v2.6.1
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
/*----------------------------------------------------------------------------*
* Public-Facing Functionality
*----------------------------------------------------------------------------*/
require_once( plugin_dir_path( __FILE__ ) . 'public/class-wp-side-comments.php' );
register_activation_hook( __FILE__, array( 'WP_Side_Comments', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'WP_Side_Comments', 'deactivate' ) );
add_action( 'plugins_loaded', array( 'WP_Side_Comments', 'get_instance' ) );
/*----------------------------------------------------------------------------*
* Dashboard and Administrative Functionality
*----------------------------------------------------------------------------*/
if ( is_admin() && ( ! defined( 'DOING_AJAX' ) || ! DOING_AJAX ) ) {
require_once( plugin_dir_path( __FILE__ ) . 'admin/class-wp-side-comments-admin.php' );
add_action( 'plugins_loaded', array( 'WP_Side_Comments_Admin', 'get_instance' ) );
}