PluginProbe ʕ •ᴥ•ʔ
Disable Comments / trunk
Disable Comments vtrunk
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
assets 4 years ago languages 4 years ago classDisableComments.php 3 years ago disable-comments-rb.php 1 month ago information.php 3 years ago options.php 6 years ago readme.txt 1 month ago screenshot-1.png 8 years ago screenshot-2.png 8 years ago
disable-comments-rb.php
23 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.27
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")) {
15 die();
16 }
17 define("RB_DISABLE_COMMENTS_PATH", plugin_dir_path(__FILE__));
18 define("RB_DISABLE_COMMENTS_VERSION", '1.0.27');
19
20 include_once(RB_DISABLE_COMMENTS_PATH .'classDisableComments.php');
21
22 classDisableComments::get_instance();
23