-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive-clients.php
More file actions
43 lines (37 loc) · 913 Bytes
/
archive-clients.php
File metadata and controls
43 lines (37 loc) · 913 Bytes
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
36
37
38
39
40
41
42
43
<?php
/**
* The template for displaying archive pages
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @subpackage Twenty_Seventeen
* @since 1.0
* @version 1.0
*/
get_header();
?>
<div id="blog" class="blog-home container hover-section category-layout">
<div class="category-head">
<h4>Clients</h4>
<div class="bars-animation">
<img src="<?php echo THEME_URL; ?>/dist/assets/img/elements/hicon.png" alt="PM">
</div>
</div><!-- Category Head -->
<?php
if ( have_posts() ) : ?>
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
?>
<div class="client-item">
<div class="text">
<h3><?php echo $post->post_title;?></h3>
<p><?php echo get_post_meta($post->ID, 'wpcf-testimonial', true);?></p>
</div>
</div>
<?php
endwhile;
endif; ?>
</div>
<?php get_footer();