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 / 2.content.php

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

37 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Page Name: Content
4 */
5
6 use CounterBox\Admin\CreateFields;
7
8 defined( 'ABSPATH' ) || exit;
9
10 $page_opt = include( 'options/content.php' );
11 $field = new CreateFields( $options, $page_opt );
12 ?>
13
14 <div class="wpie-fieldset">
15 <div class="wpie-fields is-column">
16 <?php $field->create( 'content' ); ?>
17 </div>
18 <div class="wpie-fields is-column wpie-box-countdown wpie-box-timer">
19 You can use the next shortcodes in the content for display the counters:
20 <ul>
21 <li><b>{day}</b> - display of days count</li>
22 <li><b>{hour}</b> - display of hours count</li>
23 <li><b>{min}</b> - display of minutes count</li>
24 <li><b>{sec}</b> - display of seconds count</li>
25 </ul>
26 <p class="wpie-color-orange">For Example: Left {day} : {hour} : {min} : {sec}</p>
27 </div>
28 <div class="wpie-fields is-column wpie-box-counter">
29 You can use the next shortcodes in the content for display the counters:
30 <ul>
31 <li><b>{counter}</b> - display of counter</li>
32 </ul>
33 <p class="wpie-color-orange">For Example: Counter: {counter}</p>
34 </div>
35 </div>
36 <?php
37