Esempio n. 1
0
	<div class="entry-summary">
		<?php 
the_excerpt();
?>
	</div><!-- .entry-summary -->

	<footer class="entry-footer">
		<?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(__(', ', 'bookingwp'));
    if ($categories_list && bookingwp_categorized_blog()) {
        ?>
			<span class="cat-links">
				<?php 
        printf(__('Posted in %1$s', 'bookingwp'), $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('', __(', ', 'bookingwp'));
    if ($tags_list) {
Esempio n. 2
0
		<header class="post-header">
				<?php 
the_title('<h2 class="pull-left title">', '</h2>');
?>
			<span class="pull-right date"><?php 
bookingwp_posted_on();
?>
</span>
		</header>
		<div class="post-meta">
			<?php 
/* translators: used between list items, there is a space after the comma */
$category_list = get_the_category_list(__(', ', 'bookingwp'));
/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list('', __(', ', 'bookingwp'));
if (!bookingwp_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 = __('<span class="category"><i class="fa fa-tags"></i> %2$s</span>', 'bookingwp');
    } else {
        //	$meta_text = __( 'Bookmark the <a href="%3$s" rel="bookmark">permalink</a>.', 'bookingwp' );
    }
} else {
    // But this blog has loads of categories so we should probably display them here
    if ('' != $tag_list) {
        $meta_text = __('<span class="category"><i class="fa fa-tags"></i></span> %1$s', 'bookingwp');
    } else {
        //	$meta_text = __( 'This entry was posted in %1$s. Bookmark the <a href="%3$s" rel="bookmark">permalink</a>.', 'bookingwp' );
    }
}
// end check for categories on this blog