49 lines
1.6 KiB
PHP
49 lines
1.6 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* 'wtpsw_gridbox' Design 1 Shortcodes HTML
|
||
|
*
|
||
|
* @package WP Trending Post Slider and Widget
|
||
|
* @since 1.5
|
||
|
*/
|
||
|
|
||
|
if ( ! defined( 'ABSPATH' ) ) {
|
||
|
exit; // Exit if accessed directly
|
||
|
}
|
||
|
?>
|
||
|
<div class="wtpsw-post-gridbox <?php if($wtpsw_count == 1) { echo 'wtpsw-medium-6'; } else { echo 'wtpsw-medium-3'; } ?> wtpswcolumns">
|
||
|
<a class="wtpsw-link-overlay" href="<?php the_permalink(); ?>"></a>
|
||
|
<div class="wtpsw-post-list">
|
||
|
<div class="wtpsw-post-image-bg">
|
||
|
<?php the_post_thumbnail(array(500,500)); ?>
|
||
|
<div class="wtpsw-post-list-content">
|
||
|
|
||
|
<h4 class="wtpsw-post-title">
|
||
|
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
|
||
|
</h4>
|
||
|
|
||
|
<?php if($showdate == 'true' || $showauthor == 'true' || $show_comment_count == 'true') { ?>
|
||
|
<div class="wtpsw-post-stats">
|
||
|
<?php if($showauthor == 'true') {
|
||
|
$wtpsw_post_stats[] = "<span>".__( 'By', 'wtpsw' )." <a href='".get_author_posts_url( $post->post_author )."'>".get_the_author()."</a></span>";
|
||
|
} ?>
|
||
|
|
||
|
<?php if($showdate == "true") {
|
||
|
$wtpsw_post_stats[] = "<span>".get_the_date()."</span>";
|
||
|
} ?>
|
||
|
|
||
|
<?php if( $show_comment_count == "true" && $comment_text ) {
|
||
|
$wtpsw_post_stats[] = "<span class='wtpsw-post-comment'>".$comment_text."</span>";
|
||
|
} ?>
|
||
|
|
||
|
<?php echo join(' / ', $wtpsw_post_stats); ?>
|
||
|
</div>
|
||
|
<?php } ?>
|
||
|
<?php if($showcontent == "true") { ?>
|
||
|
<div class="wtpsw-post-content">
|
||
|
<div class="wtpsw-sub-content"><?php echo wtpsw_get_post_excerpt( get_the_content(), '', $words_limit); ?></div>
|
||
|
</div>
|
||
|
<?php } ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|