function anth_the_category()
{
    echo anth_get_the_category();
}
Esempio n. 2
0
            if (anth_tags()) {
                echo "<p>" . __('Tags', 'anthologize') . "</p><ul>";
                while (anth_tags()) {
                    anth_tag_details();
                    echo "<li>";
                    echo "<a href='" . anth_get_the_tag_detail('url') . "'>" . anth_get_the_tag() . "</a>";
                    echo "</li>";
                }
                echo "</ul>";
            }
            if (anth_categories()) {
                echo "<p>" . __('Categories', 'anthologize') . "</p><ul>";
                while (anth_categories()) {
                    anth_category_details();
                    echo "<li>";
                    echo "<a href='" . anth_get_the_category_detail('url') . "'>" . anth_get_the_category() . "</a>";
                    echo "</li>";
                }
                echo "</ul>";
            }
            anth_person_details();
            anth_person_details('anthologizer');
            ?>
				<h3><?php 
            anth_the_title();
            ?>
</h3>
				<div class="item-meta" style="border: 1px solid black; margin: 5px; padding: 5px;">

					<img class="gravatar" src="<?php 
            anth_the_person_gravatar_url();