Files
2026-04-23 04:33:43 +03:30

80 lines
3.3 KiB
PHP

<?php
if ( ! defined( 'ABSPATH' ) ) exit; // If this file is called directly, abort.
$upstudy_post_thumb_src = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'upstudy-post-thumb' );
$content_class = 'content position-top';
if ( isset( $upstudy_post_thumb_src ) && ! empty( $upstudy_post_thumb_src ) ) :
$upstudy_post_thumb_url = $upstudy_post_thumb_src[0];
else :
$upstudy_post_thumb_url = '';
$content_class = $content_class . ' ' . 'without-thumb';
endif;
$blog_comment_short_text = Upstudy::setting( 'blog_comment_short_text' );
$blog_post_desktop_cols = Upstudy::setting( 'related_post_columns' );
if ( isset( $_GET['column'] ) && $_GET['column'] == 3 ) :
$blog_post_desktop_cols = 4;
endif;
$excerpt_length = Upstudy::setting( 'related_excerpt_length' );
if ( isset( $_GET['excerpt_length'] ) ) :
$excerpt_length = (int)$_GET['excerpt_length'] ? $_GET['excerpt_length'] : $excerpt_length;
endif;
$related_excerpt_show = Upstudy::setting( 'related_excerpt_show' ) ?: false;
$related_author_show = Upstudy::setting( 'related_author_show' ) ?: false;
$related_date_show = Upstudy::setting( 'related_date_show' ) ?: false;
$related_comment_show = Upstudy::setting( 'related_comment_show' ) ?: false;
$related_category_show = Upstudy::setting( 'related_category_show' ) ?: false;
$blog_read_more_btn_show = Upstudy::setting( 'blog_read_more_btn_show' );
$blog_button_text = Upstudy::setting( 'blog_button_text' ) ?: esc_html__('Read More', 'upstudy');
?>
<div id="post-<?php the_ID(); ?>" <?php post_class( 'upstudy-post-one-single-grid upstudy-col-lg-' . esc_attr( $blog_post_desktop_cols ) . ' upstudy-col-md-6 upstudy-col-sm-12' ); ?> data-sal>
<?php
echo '<div class="edu-blog blog-style-2">';
echo '<div class="inner">';
if ( $upstudy_post_thumb_url ) :
echo '<div class="thumbnail">';
echo '<a href="' . esc_url( get_the_permalink() ) . '">';
echo '<img src="' . esc_url( $upstudy_post_thumb_url ). '" alt="' . esc_attr( upstudy_thumbanil_alt_text( get_post_thumbnail_id( get_the_id() ) ) ). '" >';
echo '</a>';
echo '</div>';
endif;
echo '<div class="' . esc_attr( $content_class ) . '">';
if ($related_category_show || $related_date_show) {
echo '<ul class="blog-meta">';
if ( $related_category_show && upstudy_category_by_id( get_the_ID())) {
echo '<li class="meta-blog-cat">';
echo wp_kses_post( upstudy_category_by_id( get_the_ID(), 'category' ) );
echo '</li>';
}
if ( $related_date_show ) {
echo '<li>' . esc_html( get_the_date() ) . '</li>';
}
echo '</ul>';
}
echo upstudy_get_title( 'h4' );
if ( $blog_read_more_btn_show ) {
echo '<div class="upstudy-blog-readmore">';
echo '<a class="upstudy-blog-btn" href="' . esc_url( get_the_permalink() ) . '">';
echo esc_html( $blog_button_text );
echo '</a>';
echo '</div>';
}
echo '</div>';
echo '</div>';
echo '</div>';
echo '</div>';