Last active
May 7, 2018 18:33
-
-
Save anatol06/2921bf665f8d155c6f1bf1844b47760b to your computer and use it in GitHub Desktop.
WP - Meta List
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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