PluginProbe
Comments Extra Fields For Post,Pages and CPT / 4.4
Comments Extra Fields For Post,Pages and CPT v4.4
trunk 1.0 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 2.2 2.3 4.0 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 5.0 5.1 5.2
wp-comment-fields / templates / admin / basic-settings.php

basic-settings.php in Comments Extra Fields For Post,Pages and CPT 4.4, at templates/admin/basic-settings.php

33 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Basic Settings
4 **/
5
6 if( !defined("ABSPATH") ) die("Not Allowed");
7 ?>
8
9 <div class="wppcomment-basic-setting-section wpcomment-settings-wrapper">
10 <form class="wpcomment-settings-form">
11 <input type="hidden" name="action" value="wpcomment_save_settings" />
12 <h2 class="wppcomment-heading-style"><?php _e('WP Comments Settings', "wppcomment"); ?><span></span></h2>
13 <button type="button" class="btn btn-info wpcomment_settings_toggle"><?php _e('<< Fields', "wpcomment"); ?></button>
14
15 <div class="row mt-5">
16 <div class="col-md-6 col-sm-12">
17 <p class="form-group">
18 <label for="wpcomment_heading"><?php _e('Heading will appear before meta, leave blank for none
19 ', "wppcomment"); ?>
20
21 </label>
22 <input type="text" class="form-control" id="wpcomment_heading" name="wpcomment_heading" value="<?php echo WPCOMMENT_ADMIN()::get_option('wpcomment_heading');?>">
23 </p>
24 </div>
25 </div>
26
27 <?php do_action('wpcomment_after_general_settings'); ?>
28
29 <input class="button button-primary" type="submit" value="Save" />
30 <div class="clearboth"></div>
31 </form>
32 </div>
33