????
| Current Path : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/search/ |
| Current File : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/search/search-entry-thumbnail.php |
<?php
/**
* Search entry thumbnail
*
* @package Wanderfuls WordPress theme
* @subpackage Partials
* @version 3.0.0
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Return if there isn't any thumbnail defined
if ( ! has_post_thumbnail() ) {
return;
}
// Thumbnail arguments
$args = array(
'size' => 'thumbnail',
'width' => '',
'height' => '',
'alt' => tb_get_esc_title(),
);
// Apply filters
$args = apply_filters( 'tb_search_thumbnail_args', $args ); ?>
<div class="search-entry-thumb">
<a href="<?php tb_permalink(); ?>" title="<?php tb_esc_title(); ?>" class="search-entry-img-link"><?php tb_post_thumbnail( $args ); ?></a>
</div><!-- .search-entry-thumb -->