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 |