-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhide-this.php
More file actions
30 lines (30 loc) · 1.18 KB
/
hide-this.php
File metadata and controls
30 lines (30 loc) · 1.18 KB
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
<?php
/**
* Hide This
*
* This plugin provides a shortcode that lets you hide some parts of the content
* from your posts and pages. You can easily manage inclusions and exclusions
* for hidden content in three levels: absolute, groups and capabilities, and
* specific user.
*
* @package Hide_This
* @version 1.1.3
* @author Andrés Villarreal <andrezrv@gmail.com>
* @license GPL-2.0
* @link http://github.com/andrezrv/hide-this/
* @copyright 2013-2017 Andrés Villarreal
*
* @wordpress-plugin
* Plugin Name: Hide This
* Plugin URI: http://wordpress.org/extend/plugins/hide-this/
* Description: This plugin provides a shortcode that lets you hide some parts of the content from your posts and pages. You can easily manage inclusions and exclusions for hidden content in three levels: absolute, groups and capabilities, and specific user.
* Author: Andrés Villarreal
* Author URI: http://andrezrv.com
* Version: 1.1.3
*/
// Load Hide This class
require( dirname( __FILE__ ) . '/hide-this.class.php' );
// Load Hide This Loader class
require( dirname( __FILE__ ) . '/hide-this-loader.class.php' );
// Load Hide This
new Hide_This_Loader;