# usc-e-shop/2.11.30/templates/wp_search_item.php

Welcart e-Commerce, version 2.11.30. 17 lines.

- Page: https://pluginprobe.com/plugins/usc-e-shop/2.11.30/code/templates/wp_search_item.php
- Raw: https://pluginprobe.com/plugins/usc-e-shop/2.11.30/raw/templates/wp_search_item.php
- Modified: 2022-09-16T04:47: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/usc-e-shop/2.11.30/code/templates/wp_search_item.php#L10-L20`.

```php
<?php
/**
 * Search item page template
 *
 * @package Welcart
 */

usces_the_item();

$html = '<div class="loopimg">
	<a href="' . get_permalink( $post->ID ) . '">' . usces_the_itemImage( 0, 300, 300, $post, 'return' ) . '</a>
	</div>
	<div class="loopexp">
		<div class="field">' . $content . '</div>
	</div>';
$html = apply_filters( 'usces_filter_item_list_loopimg', $html, $content );

```
