예제 #1
0
 /**
  * Prints HTML with meta information for the categories, tags and comments.
  */
 function caseslegit_entry_footer()
 {
     // Hide category and tag text for pages.
     if ('post' == get_post_type()) {
         /* translators: used between list items, there is a space after the comma */
         $categories_list = get_the_category_list(esc_html__(', ', 'caseslegit'));
         if ($categories_list && caseslegit_categorized_blog()) {
             printf('<span class="cat-links">' . esc_html__('Posted in %1$s', 'caseslegit') . '</span>', $categories_list);
             // WPCS: XSS OK.
         }
         /* translators: used between list items, there is a space after the comma */
         $tags_list = get_the_tag_list('', esc_html__(', ', 'caseslegit'));
         if ($tags_list) {
             printf('<span class="tags-links">' . esc_html__('Tagged %1$s', 'caseslegit') . '</span>', $tags_list);
             // WPCS: XSS OK.
         }
     }
     if (!is_single() && !post_password_required() && (comments_open() || get_comments_number())) {
         echo '<span class="comments-link">';
         comments_popup_link(esc_html__('Leave a comment', 'caseslegit'), esc_html__('1 Comment', 'caseslegit'), esc_html__('% Comments', 'caseslegit'));
         echo '</span>';
     }
     edit_post_link(esc_html__('Edit', 'caseslegit'), '<span class="edit-link">', '</span>');
 }
예제 #2
0
파일: 404.php 프로젝트: joecooper3/2015
                                    <div class="article-container">
					<p><?php 
esc_html_e('It seems the page may have been deleted or moved to a new location. Try looking for it in the search box below, or check out our recent news stories. ', 'caseslegit');
?>
</p>

					<?php 
get_search_form();
?>

					<?php 
the_widget('WP_Widget_Recent_Posts');
?>

					<?php 
if (caseslegit_categorized_blog()) {
    // Only show the widget if site has multiple categories.
    ?>
					<div class="widget widget_categories">
						
						
					</div><!-- .widget -->
					<?php 
}
?>


                                    </div>
				</div><!-- .page-content -->
			</section><!-- .error-404 -->
</div>