function anth_the_tag_detail($detail)
{
    echo anth_get_the_tag_detail($detail);
}
Beispiel #2
0
        // Anthologize assumes part_id from context
        ?>

			<h2><?php 
        anth_the_title();
        ?>
</h2>
			<?php 
        while (anth_part_items()) {
            anth_item();
            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();