PluginProbe ʕ •ᴥ•ʔ
Disable Comments / 1.0.9
Disable Comments v1.0.9
1.0.26 1.0.27 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 trunk 1.0.0 1.0.1 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.2 1.0.20 1.0.21 1.0.22 1.0.23 1.0.24 1.0.25
disable-comments-rb / disable-comments-rb.php
disable-comments-rb Last commit date
languages 6 years ago class_rb_disable-comments.php 6 years ago disable-comments-rb.php 6 years ago options.php 6 years ago readme.txt 6 years ago screenshot-1.png 6 years ago screenshot-2.png 6 years ago
disable-comments-rb.php
22 lines
1 <?php
2 /*
3 Plugin Name: Disable Comments RB
4 Plugin URI: https://robosoft.co/wordpress-plugins/disable-comments
5 Description: Easy tool to disable comments for your blog posts, pages. Admin can disable comments in just few clicks. Delete comments from blog post.
6 Version: 1.0.9
7 Author: rbPlugins
8 Author URI: https://robosoft.co/wordpress-plugins/disable-comments
9 License: GPL2
10 Text Domain: disable-comments-rb
11 Domain Path: /languages/
12 */
13
14 if( !defined('WPINC') || !defined("ABSPATH") ) die();
15
16 define("RB_DISABLE_COMMENTS_PATH", plugin_dir_path( __FILE__ ) );
17 define("RB_DISABLE_COMMENTS_VERSION", '1.0.9' );
18
19 include_once( RB_DISABLE_COMMENTS_PATH .'class_rb_disable-comments.php');
20
21 Rbs_Disable_Comments::get_instance();
22