Пример #1
0
 /**
  * Prints HTML with meta information for the current post-date/time and author.
  */
 function reyl_lite_metadata()
 {
     echo '<ul>';
     $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
     if (get_the_time('U') !== get_the_modified_time('U')) {
         $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
     }
     $time_string = sprintf($time_string, esc_attr(get_the_date('c')), esc_html(get_the_date()), esc_attr(get_the_modified_date('c')), esc_html(get_the_modified_date()));
     echo '<li class="meta_date">' . $time_string . '</li>';
     // 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__(', ', 'reyl-lite'));
         if ($categories_list && reyl_lite_categorized_blog()) {
             printf('<li class="meta_categories"><span class="cat-links">%1$s</span></li>', $categories_list);
             // WPCS: XSS OK.
         }
         if (is_single()) {
             /* translators: used between list items, there is a space after the comma */
             $tags_list = get_the_tag_list('', esc_html__(', ', 'reyl-lite'));
             if ($tags_list) {
                 printf('<li class="meta_tags"><span class="tags-links">' . esc_html__('Tagged %1$s', 'reyl-lite') . '</span></li>', $tags_list);
                 // WPCS: XSS OK.
             }
         }
     }
     if (is_single()) {
         $byline = sprintf(esc_html_x('by %s', 'post author', 'reyl-lite'), '<span class="author vcard"><a class="url fn n" href="' . esc_url(get_author_posts_url(get_the_author_meta('ID'))) . '">' . esc_html(get_the_author()) . '</a></span>');
         echo '<li class="meta_author">' . $byline . '</li>';
     }
     if (!is_single() && !post_password_required() && (comments_open() || get_comments_number())) {
         echo '<li class="meta_comments"><span class="comments-link">';
         comments_popup_link(esc_html__('Leave a comment', 'reyl-lite'), esc_html__('1 Comment', 'reyl-lite'), esc_html__('% Comments', 'reyl-lite'));
         echo '</span></li>';
     }
     echo '</ul>';
 }
Пример #2
0
					<div class="clearfix"></div>
					<div class="widgets-404">
						<div class="row">

							<div class="col-md-4">

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

							</div>

							<div class="col-md-4">

								<?php 
if (reyl_lite_categorized_blog()) {
    // Only show the widget if site has multiple categories.
    ?>
								<div class="widget widget_categories">
									<h2 class="widget-title"><?php 
    esc_html_e('Most Used Categories', 'reyl-lite');
    ?>
</h2>
									<ul>
									<?php 
    wp_list_categories(array('orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10));
    ?>
									</ul>
								</div><!-- .widget -->
								<?php 
}