| Server IP : 51.91.236.255 / Your IP : 216.73.216.180 Web Server : Apache System : Linux webm017.cluster129.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : laureet ( 1012854) PHP Version : 8.0.30 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/laureet/www/wp-content/themes/rock-singer/sections/ |
Upload File : |
<?php
/**
* Template part for displaying Blog Section
*
*@package Rock Singer
*/
$blog_section_subtitle = rock_singer_get_option( 'blog_section_subtitle' );
$blog_section_title = rock_singer_get_option( 'blog_section_title' );
$blog_category = rock_singer_get_option( 'blog_category' );
$blog_number = rock_singer_get_option( 'blog_number' ); ?>
<?php if( !empty($blog_section_subtitle) || !empty($blog_section_title) ): ?>
<div class="section-header">
<?php if( !empty($blog_section_subtitle) ): ?>
<h3 class="section-subtitle"><?php echo esc_html($blog_section_subtitle);?></h3>
<?php endif; ?>
<?php if( !empty($blog_section_title) ): ?>
<h2 class="section-title"><?php echo esc_html($blog_section_title);?></h2>
<?php endif; ?>
</div><!-- .section-header -->
<?php endif; ?>
<div class="section-content col-3 clear">
<?php
$blog_args = array(
'posts_per_page' =>absint( $blog_number ),
'post_type' => 'post',
'post_status' => 'publish',
'paged' => 1,
);
if ( absint( $blog_category ) > 0 ) {
$blog_args['cat'] = absint( $blog_category );
}
$loop = new WP_Query( $blog_args );
if ( $loop->have_posts() ) :
$i=-1; $j=0;
while ( $loop->have_posts() ) : $loop->the_post(); $i++; $j++; ?>
<article>
<div class="post-item">
<?php if(has_post_thumbnail()):?>
<div class="featured-image" style="background-image: url('<?php the_post_thumbnail_url( 'full' ); ?>');">
<a href="<?php the_permalink();?>" class="post-thumbnail-link"></a>
</div><!-- .featured-image -->
<?php endif; ?>
<div class="entry-container">
<header class="entry-header">
<h2 class="entry-title">
<a href="<?php the_permalink();?>"><?php the_title();?></a>
</h2>
</header>
<div class="entry-content">
<?php
$excerpt = rock_singer_the_excerpt( 20 );
echo wp_kses_post( wpautop( $excerpt ) );
?>
</div><!-- .entry-content -->
<div class="entry-meta">
<?php rock_singer_entry_meta(); ?>
<?php rock_singer_posted_on(); ?>
</div><!-- .entry-meta -->
</div><!-- .entry-container -->
</div><!-- .post-item -->
</article>
<?php endwhile;?>
<?php endif; ?>
<?php wp_reset_postdata(); ?>
</div><!-- .section-content -->