Skip to content

Instantly share code, notes, and snippets.

@anatol06
Last active May 7, 2018 18:33
Show Gist options
  • Save anatol06/2921bf665f8d155c6f1bf1844b47760b to your computer and use it in GitHub Desktop.
Save anatol06/2921bf665f8d155c6f1bf1844b47760b to your computer and use it in GitHub Desktop.
WP - Meta List
<ul class="meta">
<li>By
<a href="<?php echo get_author_posts_url(get_the_author_meta('ID')); ?>">
<?php the_author(); ?></a>
</li>
<li><?php the_time('F j, Y g:i a'); ?></li>
<li>
<?php
$categories = get_the_category();
$separator = ", ";
$output = '';
if($categories) {
foreach($categories as $category) {
$output .= '<a href="'. get_category_link($category->term_id).'">'.$category->cat_name .'</a>'. $separator;
}
}
echo trim($output, $separator);
?>
</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment