# wpdirectorykit/1.3.4/shortcodes/views/shortcode-latest-listings-list.php

WP Directory Kit, version 1.3.4. 75 lines.

- Page: https://pluginprobe.com/plugins/wpdirectorykit/1.3.4/code/shortcodes/views/shortcode-latest-listings-list.php
- Raw: https://pluginprobe.com/plugins/wpdirectorykit/1.3.4/raw/shortcodes/views/shortcode-latest-listings-list.php
- Modified: 2024-06-20T21:53:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpdirectorykit/1.3.4/code/shortcodes/views/shortcode-latest-listings-list.php#L10-L20`.

```php
<?php
/**
 * The template for Shortcode Listings list
 * This is the template that Shortcode listings list
 *
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

?>
<div 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));?>">
    <div class="wdk-listings-list">
        <div class="wdk-row">
            <?php if(!empty($results)):?>
                <?php foreach($results as $listing):?>
                    <?php
                        $url = get_permalink($listing);
                        $title_post =  wdk_resultitem_fields_section_value(1, 2, $listing);
                        $title_part =  wdk_resultitem_fields_section_value(1, 2, $listing);
                        $price_part = wdk_resultitem_fields_section_value(1, 5, $listing);
                    ?>
                    <div class="wdk-col">
                        <div class="listing-item">
                            <div class="listing-img-sec">
                                <a href="<?php echo esc_url($url);?>" title="<?php echo esc_attr(wmvc_show_data('post_title', $listing));?>">
                                    <img src="<?php echo esc_url(wdk_image_src($listing, 'full'));?>" alt="<?php echo esc_attr(wmvc_show_data('post_title', $listing));?>">
                                </a>
                            </div><!--prop-img-sec enf-->
                            <div class="listing-inf-sec">
                                <?php if(!empty($title_part)):?>
                                    <h3 class="title">
                                        <a href="<?php echo esc_url($url);?>">
                                            <?php foreach ($title_part as $key => $field):?>
                                                <span>
                                                    <?php echo wmvc_show_data('prefix', $field).wdk_filter_decimal(wmvc_show_data('value', $field)).wmvc_show_data('suffix', $field);?>
                                                </span> 
                                            <?php endforeach;?>
                                        </a>
                                    </h3>
                                <?php endif;?>
                                <?php if(!empty($price_part)):?>
                                    <div class="price">
                                        <?php foreach ($price_part as $key => $field):?>
                                        <span>
                                            <?php echo esc_html(apply_filters( 'wpdirectorykit/listing/field/prefix', wmvc_show_data('prefix', $field), wmvc_show_data('field_id', $field)));?>
                                            <?php if(function_exists('run_wdk_currency_conversion') && wdk_field_option(wmvc_show_data('field_id', $field), 'field_type') == 'NUMBER'):?>
                                                <?php  
                                                    $value = strip_tags(apply_filters( 'wpdirectorykit/listing/field/value', wdk_filter_decimal(wmvc_show_data('value', $field)), wmvc_show_data('field_id', $field), FALSE));
                                                    echo esc_html(wdk_number_format_i18n($value));
                                                ?>
                                            <?php else:?>
                                                <?php  
                                                    $value = strip_tags(apply_filters( 'wpdirectorykit/listing/field/value', wdk_filter_decimal(wmvc_show_data('value', $field)), wmvc_show_data('field_id', $field), FALSE));
                                                    echo esc_html(wdk_number_format_i18n($value));
                                                ?>
                                            <?php endif;?>
                                            <?php echo esc_html(apply_filters( 'wpdirectorykit/listing/field/suffix', wmvc_show_data('suffix', $field), wmvc_show_data('field_id', $field)));?>
                                        </span> 
                                        <?php endforeach;?>
                                    </div>
                                <?php endif;?>
                            </div><!--prop-inf-sec enf-->
                        </div>
                    </div>
                <?php endforeach;?> 
            <?php else:?>
                <p class="wdk_alert wdk_alert-danger"><?php echo esc_html__('Results not found', 'wpdirectorykit');?></p>
            <?php endif;?>
        </div>
    </div>
</div>


```
