PluginProbe
Counter Box – Add Countdowns, Timers & Dynamic Counters to WordPress / 2.0
Counter Box – Add Countdowns, Timers & Dynamic Counters to WordPress v2.0
2.0.14 trunk 1.0 1.2 1.2.1 1.2.2 1.2.3 1.2.4 2.0 2.0.1 2.0.10 2.0.11 2.0.12 2.0.13 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9
counter-box / admin / settings / 3.style.php

3.style.php in Counter Box – Add Countdowns, Timers & Dynamic Counters to WordPress 2.0, at admin/settings/3.style.php

30 lines 753 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Page Name: Style
4 */
5
6 use CounterBox\Admin\CreateFields;
7
8 defined( 'ABSPATH' ) || exit;
9
10 $page_opt = include( 'options/style.php' );
11 $field = new CreateFields( $options, $page_opt );
12
13 ?>
14
15 <div class="wpie-fieldset">
16 <div class="wpie-legend"><?php esc_html_e( 'Style', 'counter-box' ); ?></div>
17 <div class="wpie-fields">
18 <?php $field->create( 'width' ); ?>
19 <?php $field->create( 'height' ); ?>
20 <?php $field->create( 'background' ); ?>
21 <?php $field->create( 'border_radius' ); ?>
22 </div>
23 <div class="wpie-fields">
24 <?php $field->create( 'border_style' ); ?>
25 <?php $field->create( 'border_width' ); ?>
26 <?php $field->create( 'border_color' ); ?>
27 </div>
28 </div>
29
30 <?php