1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <article> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <div class="post-content"> <?php the_excerpt(); ?> </div> <div class="post-tags"> <?php $tags = get_the_tags(); if ($tags) { $first_three_tags = array_slice($tags, 0, 3); foreach ($first_three_tags as $tag) { echo '<a href="' . get_tag_link($tag->term_id) . '" class="tag-link">' . $tag->name . '</a> '; } } ?> </div> </article> <?php endwhile; endif; ?>
|