| 1 |
<?php |
| 2 |
/** |
| 3 |
* The template for Shortcode Listings list |
| 4 |
* This is the template that Shortcode listings list |
| 5 |
* |
| 6 |
*/ |
| 7 |
|
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
exit; // Exit if accessed directly. |
| 10 |
} |
| 11 |
|
| 12 |
?> |
| 13 |
<div class="wdk-dashwidget-element" id="wdk_dashwidget_<?php echo esc_attr($id_element);?>"> |
| 14 |
<div class="wdk-news wdk-wrap"> |
| 15 |
<table class="table table-bordered footable"> |
| 16 |
<tbody id="wdk_script_news_table"> |
| 17 |
<tr> |
| 18 |
<td colspan="5"><?php echo __('Loading in progress', 'wpdirectorykit');?></td> |
| 19 |
</tr> |
| 20 |
</tbody> |
| 21 |
</table> |
| 22 |
<div class="footer"> |
| 23 |
<a href="https://wpdirectorykit.com/wp/blog/" title="<?php echo esc_attr__('Show More', 'wpdirectorykit'); ?>" target="_blank" class="button"> |
| 24 |
<?php echo esc_html__('Show More', 'wpdirectorykit'); ?> |
| 25 |
</a> |
| 26 |
</div> |
| 27 |
</div> |
| 28 |
</div> |
| 29 |
|
| 30 |
|