?>
</a>
			<span class="sep"> &bull; </span>
		<?php 
}
?>
		<?php 
chalkboard_posted_on();
?>
		<span class="sep"> &bull; </span>
		<?php 
/* translators: used between list items, there is a space after the comma */
$category_list = get_the_category_list(__(', ', 'classicchalkboard'));
/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list('', __(', ', 'classicchalkboard'));
if (!chalkboard_categorized_blog()) {
    // This blog only has 1 category so we just need to worry about tags in the meta text
    if ('' != $tag_list) {
        //XTEC ************ MODIFICAT - Translate
        //2013.10.30 @jmeler
        $meta_text = __('Etiquetes:  %2$s. <a href="%3$s" title="Permalink to %4$s" rel="bookmark">Enllaç permanent</a>.', 'classicchalkboard');
        /*
        	$meta_text = __( 'This entry was tagged %2$s. <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'classicchalkboard' );
        */
        //************ FI
    } else {
        //XTEC ************ MODIFICAT - Translate
        //2013.10.30 @jmeler
        $meta_text = __('<a href="%3$s" title="Enllaç permanent a %4$s" rel="bookmark">Enllaç permanent</a>.', 'classicchalkboard');
        /*$meta_text = __( 'Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.', 'classicchalkboard' );*/
        //************ FI
Example #2
0
</a>
			<span class="sep"> &bull; </span>
		<?php 
}
?>
		<?php 
if ('post' == get_post_type()) {
    // Hide category and tag text for pages on Search
    ?>
			<?php 
    chalkboard_posted_on();
    ?>
			<?php 
    /* translators: used between list items, there is a space after the comma */
    $categories_list = get_the_category_list(__(', ', 'classicchalkboard'));
    if ($categories_list && chalkboard_categorized_blog()) {
        ?>
			<span class="cat-links">
				<?php 
        printf(__('in %1$s', 'classicchalkboard'), $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('', __(', ', 'classicchalkboard'));
    if ($tags_list) {