PluginProbe
WP Directory Kit / 1.3.4
WP Directory Kit v1.3.4
1.5.6 1.5.5 1.5.4 1.5.3 trunk 1.1.0 1.1.6 1.1.8 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.8 1.4.0 1.4.1 All 35 releases
wpdirectorykit / shortcodes / views / shortcode-wdk-listing-field-value-text.php

shortcode-wdk-listing-field-value-text.php in WP Directory Kit 1.3.4, at shortcodes/views/shortcode-wdk-listing-field-value-text.php

20 lines 643 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * The template for Shortcode Listing Field Only Value.
4 * This is the template that Shortcode listing field value text
5 *
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit; // Exit if accessed directly.
10 }
11
12 ?>
13 <?php if($settings['enable_html'] == true):?>
14 <span class="wdk-shortcode wdk-element <?php echo esc_attr(wmvc_show_data('custom_class', $settings));?>" id="wdk_el_<?php echo esc_attr(wmvc_show_data('id', $settings));?>">
15 <span class='value'><?php wdk_viewe(wdk_filter_decimal($field_value));?></span>
16 </span>
17 <?php else:?>
18 <?php wdk_viewe(wdk_filter_decimal($field_value));?>
19 <?php endif;?>
20