Current Path : /var/test/www/ljmti/wp-content/themes/clevercourse/single/ |
Current File : /var/test/www/ljmti/wp-content/themes/clevercourse/single/thumbnail.php |
<?php if( !is_single() ){ global $gdlr_post_settings; }else{ global $gdlr_post_settings, $theme_option, $gdlr_post_option; } $gdlr_post_settings['content'] = get_the_content(); if ( has_post_thumbnail() && ! post_password_required() ){ ?> <div class="gdlr-blog-thumbnail"> <?php if( is_single() ){ echo gdlr_get_image(get_post_thumbnail_id(), $theme_option['post-thumbnail-size'], true); }else{ $temp_option = json_decode(get_post_meta(get_the_ID(), 'post-option', true), true); echo '<a href="' . get_permalink() . '"> '; echo gdlr_get_image(get_post_thumbnail_id(), $gdlr_post_settings['thumbnail-size']); echo '</a>'; if( is_sticky() ){ echo '<div class="gdlr-sticky-banner">'; echo '<i class="fa fa-bullhorn icon-bullhorn" ></i>'; echo __('Sticky Post', 'gdlr_translate'); echo '</div>'; } } ?> </div> <?php } ?>