Sindbad~EG File Manager
<?php
$titles = array(
'associado' => __('ÁREA DO ASSOCIADO', 'itt'),
);
set_query_var('title', $titles[get_post_type()]);
?>
<!-- Listagem padrão de posts -->
<section class="list">
<?php
get_template_part('components/item', 'head-page');
?>
<div class="container">
<div class="row">
<div class="col-sm-8 m-0 p-0">
<?php if (have_posts()): while (have_posts()) : the_post(); ?>
<div class="col-sm-12 mb-2">
<div class="card card-horizontal">
<div class="card-body">
<div class="row">
<div class="col-4">
<?php if(get_the_post_thumbnail_url()): ?>
<img src="<?php echo get_the_post_thumbnail_url(); ?>" class="img-responsive" width="100" height="100">
<?php else: ?>
<p><?php echo _e('Sem Foto', 'itt'); ?></p>
<?php endif; ?>
</div>
<div class="col">
<div class="row">
<div class="col-md-12">
<h4 class="card-title"><?php the_title(); ?></h4>
</div>
<div class="col-md-12">
<p class="card-text"><?php echo get_the_content(); ?></p>
</div>
<div class="col-md-10">
<?php echo get_the_date() ;?>
</div>
<div class="col-md-2">
<a href="<?php echo get_the_permalink();?>" class="btn-arrow">
<i class="fas fa-arrow-right"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php endwhile; ?>
<?php else: ?>
<div class="m-5">
<?php echo _e('Nenhum resultado encontrado', 'itt'); ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
</section>
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists