Example #1
0
}
the_content();
if (!current_theme_supports('epigone-pagination')) {
    wp_link_pages(array('before' => '<div class="page-links">' . __('Pages:', 'epigone'), 'after' => '</div>'));
}
?>
	</div>
	<!-- .entry-content -->

	<footer class="entry__footer">
		<?php 
/* translators: used between list items, there is a space after the comma */
$category_list = get_the_category_list(__(', ', 'epigone'));
/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list('', __(', ', 'epigone'));
if (!epigone_categorized_blog()) {
    // This blog only has 1 category so we just need to worry about tags in the meta text
    if ('' != $tag_list) {
        $meta_text = __('This entry was tagged %2$s. Bookmark the <a href="%3$s" rel="bookmark">permalink</a>.', 'epigone');
    } else {
        $meta_text = __('Bookmark the <a href="%3$s" rel="bookmark">permalink</a>.', 'epigone');
    }
} else {
    // But this blog has loads of categories so we should probably display them here
    if ('' != $tag_list) {
        $meta_text = __('This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" rel="bookmark">permalink</a>.', 'epigone');
    } else {
        $meta_text = __('This entry was posted in %1$s. Bookmark the <a href="%3$s" rel="bookmark">permalink</a>.', 'epigone');
    }
}
// end check for categories on this blog
Example #2
0
        <?php 
the_excerpt();
?>
    </div>
    <!-- .hentry-summary -->
    <?php 
if ("true" == get_theme_mod('single_post_category', 'true') || "true" == get_theme_mod('single_post_tags', 'true') || "true" == get_theme_mod('single_comment_num', 'true')) {
    ?>

        <footer class="hentry__footer">
            <?php 
    if ('post' == get_post_type()) {
        if ("true" == get_theme_mod('single_post_category', 'true')) {
            $categories_list = get_the_category_list(__(', ', 'epigone'));
            if ($categories_list && epigone_categorized_blog()) {
                ?>
                        <span class="cat-links">
						<i class="fa fa-folder"></i> <?php 
                printf(__('Posted in %1$s', 'epigone'), $categories_list);
                ?>
					</span>
                        <?php 
            }
            // End if categories
        }
        ?>

                <?php 
        if ("true" == get_theme_mod('single_post_tags', 'true')) {
            /* translators: used between list items, there is a space after the comma */