PluginProbe
Unlist Posts & Pages / 1.2.0
Unlist Posts & Pages v1.2.0
1.2.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0
unlist-posts / unlist-posts.php

unlist-posts.php in Unlist Posts & Pages 1.2.0, at unlist-posts.php

21 lines 662 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Unlist Posts & Pages
4 * Plugin URI: https://github.com/Nikschavan/hide-post
5 * Description: Hide posts, pages or custom items from your site and make them accessible only with the direct link.
6 * Author: Nikhil Chavan
7 * Author URI: https://www.nikhilchavan.com/
8 * Text Domain: unlist-posts
9 * Version: 1.2.0
10 *
11 * @package Hide_Post
12 */
13
14 defined( 'ABSPATH' ) or exit;
15
16 define( 'UNLIST_POSTS_DIR', plugin_dir_path( __FILE__ ) );
17 define( 'UNLIST_POSTS_URI', plugins_url( '/', __FILE__ ) );
18 define( 'UNLIST_POSTS_VER', '1.2.0' );
19
20 require_once UNLIST_POSTS_DIR . 'class-unlist-posts.php';
21