?>
</p>
	</div>
    <div class="entry-content">
        <?php 
    the_content();
    ?>
        <?php 
    wp_link_pages(array('before' => '<div class="page-links">' . __('Pages:', 'jvm'), 'after' => '</div>'));
    ?>
    </div><!-- .entry-content -->
    <footer class="entry-meta">
	<?php 
    $category_list = get_the_category_list(__(',', 'jvm'));
    $tag_list = get_the_tag_list('', __(',', 'jvm'));
    if (!jvm_categorized_blog()) {
        if ('' != $tag_list) {
            $meta_text = __('This entry was tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'jvm');
        } else {
            $meta_text = __('Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'jvm');
        }
    } else {
        if ('' != $tag_list) {
            $meta_text = __('This entry was posted in %1$s and tagged %2$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'jvm');
        } else {
            $meta_text = __('This entry was posted in %1$s. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'jvm');
        }
    }
    printf($meta_text, $category_list, $tag_list, get_permalink(), the_title_attribute('echo=0'));
    ?>
	<?php 
Example #2
0
    ?>
</p>
    </div><!-- .entry-content -->
    <?php 
}
?>
 
    <footer class="entry-meta">
        <?php 
if ('post' == get_post_type()) {
    // Hide category and tag text for pages on Search
    ?>
            <?php 
    /* translators: used between list items, there is a space after the comma */
    $categories_list = get_the_category_list(__(', ', 'jvm'));
    if ($categories_list && jvm_categorized_blog()) {
        ?>
            <span class="cat-links">
                <?php 
        printf(__('Posted in %1$s', 'jvm'), $categories_list);
        ?>
            </span>
            <?php 
    }
    // End if categories
    ?>
 
            <?php 
    /* translators: used between list items, there is a space after the comma */
    $tags_list = get_the_tag_list('', __(', ', 'jvm'));
    if ($tags_list) {