| 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 |
|