-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-projects.php
46 lines (39 loc) · 1013 Bytes
/
page-projects.php
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
44
45
46
<?php get_header();?>
<h2 class="page-heading">All Projects</h2>
<section>
<?php
$args = array(
'post_type' => 'project',
);
$p = new WP_Query( $args );
while ( $p->have_posts() ) {
$p->the_post();
?>
<div class="card">
<div class="card-image">
<a href="<?php echo the_permalink(); ?>">
<img src="<?php echo get_the_post_thumbnail_url( get_the_ID() ); ?>" alt="Card Image" />
</a>
</div>
<div class="card-description">
<a href="<?php echo the_permalink(); ?>">
<h3>
<?php the_title();?>
</h3>
</a>
<div class="card-meta">
Posted By <?php the_author();?> On <?php the_time( 'F j, Y' )?>
</div>
<p>
<?php echo wp_trim_words( get_the_excerpt(), 30 ); ?>
</p>
<a href="<?php the_permalink();?>" class="btn-readmore">Read More</a>
</div>
</div>
<?php }
wp_reset_query();?>
</section>
<div class="pagination">
<?php echo paginate_links(); ?>
</div>
<?php get_footer();?>