PluginProbe ʕ •ᴥ•ʔ
Disable Comments – Remove Comments & Stop Spam [Multi-Site Support] / 2.7.0
Disable Comments – Remove Comments & Stop Spam [Multi-Site Support] v2.7.0
trunk 1.1.1 1.10.0 1.10.3 1.11.0 1.5 1.5.1 1.5.2 1.6 1.7 1.7.1 1.8.0 1.9.0 2.0.0 2.0.1 2.0.2 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.4.7 2.5.0 2.5.1 2.5.2 2.5.3 2.6.0 2.6.1 2.6.2 2.7.0
disable-comments / views / settings.php
disable-comments / views Last commit date
partials 1 month ago comments.php 5 years ago settings.php 1 year ago
settings.php
56 lines
1 <div class="wrap">
2 <div id="disablecommentswrap" class="disablecommentswrap background__grey">
3 <?php do_action('disable_comments_notice'); ?>
4 <div class="disable__comment_block">
5 <div class="disable__comment__nav__wrap">
6 <p class="plugin__version"><?php echo esc_html__('Version', 'disable-comments') . ' ' . esc_html(DC_VERSION); ?></p>
7 <ul class="disable__comment__nav" role="tablist">
8 <li id="disableCommentsNav" class="disable__comment__nav__item" role="presentation">
9 <a href="#disableComments"
10 class="disable__comment__nav__link active"
11 role="tab"
12 aria-selected="true"
13 aria-controls="disableComments"
14 tabindex="0">
15 <?php echo esc_html(_x('Disable Comments', 'Tab Name', 'disable-comments')); ?>
16 </a>
17 </li>
18 <li id="deleteCommentsNav" class="disable__comment__nav__item" role="presentation">
19 <a href="#deleteComments"
20 class="disable__comment__nav__link"
21 role="tab"
22 aria-selected="false"
23 aria-controls="deleteComments"
24 tabindex="0">
25 <?php echo esc_html(_x('Delete Comments', 'Tab Name', 'disable-comments')); ?>
26 </a>
27 </li>
28 </ul>
29 </div>
30 <div class="dc-row">
31 <div class="dc-col-lg-9">
32 <div class="disable__comment__tab">
33 <div id="disableComments"
34 class="disable__comment__tab__item show"
35 role="tabpanel"
36 aria-labelledby="disableCommentsNav"
37 >
38 <?php include DC_PLUGIN_VIEWS_PATH . 'partials/_disable.php'; ?>
39 </div>
40 <div id="deleteComments"
41 class="disable__comment__tab__item"
42 role="tabpanel"
43 aria-labelledby="deleteCommentsNav"
44 >
45 <?php include DC_PLUGIN_VIEWS_PATH . 'partials/_delete.php'; ?>
46 </div>
47 </div>
48 </div>
49 <div class="dc-col-lg-3">
50 <?php include DC_PLUGIN_VIEWS_PATH . 'partials/_sidebar.php'; ?>
51 </div>
52 <div>
53 </div>
54 <?php include DC_PLUGIN_VIEWS_PATH . 'partials/_footer.php'; ?>
55 </div>
56 </div>