-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloop.php
More file actions
executable file
·35 lines (33 loc) · 1.04 KB
/
loop.php
File metadata and controls
executable file
·35 lines (33 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
?>
<!-- article -->
<article id="post-<?php the_ID(); ?>" <?php post_class('col-12'); ?>>
<div class="row">
<div class="col-4 col-md-2 pl-0">
<!-- post image -->
<?php if(has_post_thumbnail( )) : ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php the_post_thumbnail( 'small-square', array('class' => 'rounded-circle') ); ?>
</a>
<?php endif; ?>
<!-- /post image -->
</div>
<div class="col-8 col-md-10">
<!-- post title -->
<h5 class="post-title">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a>
</h5>
<?php
$short_desc = get_field('short_description');
if($short_desc) {
echo $short_desc;
};
?>
<!-- /post title -->
</div>
</div>
<hr/>
</article>
<!-- /article -->