%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 54.36.91.62 / Your IP : 216.73.217.162 Web Server : Apache System : Linux webm002.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : wellingtpa ( 97533) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/w/e/l/wellingtpa/wellingtonrecord/wp-content/themes/kata/template-parts/loops/ |
Upload File : |
<?php
/**
* The default template for displaying author posts
*
* Used for both singular and index.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @author ClimaxThemes
* @package Kata
* @since 1.0.0
*/
// Don't load directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<div class="container">
<div class="col-sm-12">
<div class="kata-author-wrapper">
<div class="kata-author-avatar"><?php echo get_avatar( get_the_author_meta( 'ID' ), 70 ); ?></div>
<div class="kata-author-content">
<h3 class="kata-author-name"> <?php echo esc_html( get_the_author() ); ?> </h3>
<p class="kata-author-description"><?php echo wp_kses_post( wpautop( get_the_author_meta( 'description' ) ) ); ?></p>
</div>
</div>
</div>
</div>
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
?>
<div class="kata-default-post kata-default-loop loop-two">
<div class="kata-post-details">
<div class="post-content-header">
<div class="row">
<div class="col-md-4">
<div class="kata-post-thumbnail">
<?php Kata_Helpers::image_resize_output( get_post_thumbnail_id(), array( '300', '300' ) ); ?>
</div>
</div>
<div class="col-md-5">
<div class="kata-post-categories">
<?php Kata_Template_Tags::post_categories(); ?>
</div>
<div class="kata-post-content-wrap">
<div class="kata-post-title-wrap">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<h2 class="kata-post-title-loop-two"><?php the_title(); ?></h2>
</a>
</div>
<div class="kata-post-excerpt">
<p><?php echo esc_html( Kata_Template_Tags::excerpt( 15 ) ); ?></p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="kata-post-default-meta">
<div class="kata-post-date-wrap">
<span><?php echo esc_html__( 'Date:', 'kata' ); ?></span>
<?php Kata_Template_Tags::post_date(); ?>
</div>
<div class="kata-post-author-wrap">
<span><?php echo esc_html__( 'Author:', 'kata' ); ?></span>
<?php Kata_Template_Tags::post_author(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
endwhile;
endif;
wp_reset_postdata();
?>
<div class="kata-pagination">
<?php the_posts_pagination(); ?>
</div>