first commit

This commit is contained in:
Roman Pyrih
2023-07-24 08:30:51 +02:00
commit c2e100a763
7128 changed files with 1622619 additions and 0 deletions

View File

@@ -0,0 +1,71 @@
<?php if ( ! defined( 'ABSPATH' ) ) {
die( 'Direct access forbidden.' );
}
/**
* @var string $before_widget
* @var string $after_widget
* @var array $recent_posts
* @var array $popular_posts
*/
$unique_id = uniqid();
echo wp_kses_post( $before_widget );
?>
<div class="tabs small-tabs">
<ul class="nav nav-tabs" role="tablist">
<li><a href="#popular_posts_<?php echo esc_attr( $unique_id ); ?>" role="tab"
data-toggle="tab"><?php esc_html_e( 'Popular', 'solarify' ); ?></a></li>
<li><a href="#recent_<?php echo esc_attr( $unique_id ); ?>" role="tab"
data-toggle="tab"><?php esc_html_e( 'Recent', 'solarify' ); ?></a></li>
</ul>
</div>
<div class="tab-content top-color-border no-border">
<div id="popular_posts_<?php echo esc_attr( $unique_id ); ?>" class="tab-pane fade">
<?php while ( $popular_posts->have_posts() ) : $popular_posts->the_post(); ?>
<div <?php post_class( 'vertical-item' ); ?>>
<?php if ( has_post_thumbnail() ) : ?>
<a href="<?php the_permalink(); ?>">
<?php echo get_the_post_thumbnail( get_the_ID() ); ?>
</a>
<?php endif; //has_post_thumbnail ?>
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<p class="item-meta">
<?php
solarify_posted_on();
?>
<span class="pull-right">
<i class="rt-icon2-heart-outline highlight"></i>
<?php
solarify_post_like_count( get_the_ID() );
?>
</span>
</p>
</div>
<?php endwhile; ?>
<?php wp_reset_postdata(); // reset the query ?>
</div>
<div id="recent_<?php echo esc_attr( $unique_id ); ?>" class="tab-pane fade">
<?php while ( $recent_posts->have_posts() ) : $recent_posts->the_post(); ?>
<div <?php post_class( 'vertical-item' ); ?> id="widget-post-tabs-post-<?php the_ID(); ?>">
<?php if ( has_post_thumbnail( get_the_ID() ) ) : ?>
<a href="<?php the_permalink(); ?>">
<?php echo get_the_post_thumbnail( get_the_ID() ); ?>
</a>
<?php endif; //has_post_thumbnail ?>
<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
<p class="item-meta">
<?php solarify_posted_on(); ?>
<span class="pull-right">
<i class="rt-icon2-heart-outline highlight"></i>
<?php
solarify_post_like_count( get_the_ID() );
?>
</span>
</p>
</div>
<?php endwhile; ?>
<?php wp_reset_postdata(); // reset the query ?>
</div>
</div>
<?php echo wp_kses_post( $after_widget ); ?>