| 1 |
<?php |
| 2 |
/** |
| 3 |
* Search item page template |
| 4 |
* |
| 5 |
* @package Welcart |
| 6 |
*/ |
| 7 |
|
| 8 |
usces_the_item(); |
| 9 |
|
| 10 |
$html = '<div class="loopimg"> |
| 11 |
<a href="' . get_permalink( $post->ID ) . '">' . usces_the_itemImage( 0, 300, 300, $post, 'return' ) . '</a> |
| 12 |
</div> |
| 13 |
<div class="loopexp"> |
| 14 |
<div class="field">' . $content . '</div> |
| 15 |
</div>'; |
| 16 |
$html = apply_filters( 'usces_filter_item_list_loopimg', $html, $content ); |
| 17 |
|