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 |