<?php 
if (has_post_thumbnail()) {
    echo '<div class="single-post-thumbnail clear">';
    echo '<div class="image-shifter">';
    echo the_post_thumbnail('large-thumb');
    echo '</div>';
    echo '</div>';
}
?>

	<header class="entry-header">

            <?php 
/* translators: used between list items, there is a space after the comma */
$category_list = get_the_category_list(__(', ', 'my-simone'));
if (my_simone_categorized_blog()) {
    echo '<div class="category-list">' . $category_list . '</div>';
}
?>
		<h1 class="entry-title"><?php 
the_title();
?>
</h1>

		<div class="entry-meta">
			<?php 
my_simone_posted_on();
?>
                        <?php 
if (!post_password_required() && (comments_open() || '0' != get_comments_number())) {
    echo '<span class="comments-link">';
예제 #2
0
    wp_link_pages(array('before' => '<div class="page-links">' . __('Pages:', 'my-simone'), 'after' => '</div>'));
    ?>
	</div><!-- .entry-content -->
	<?php 
}
?>

	<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(__(', ', 'my-simone'));
    if ($categories_list && my_simone_categorized_blog()) {
        ?>
			<span class="cat-links">
				<?php 
        printf(__('Posted in %1$s', 'my-simone'), $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('', __(', ', 'my-simone'));
    if ($tags_list) {