Advertisement
Guest User

Untitled

a guest
Sep 8th, 2015
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. /**
  2. * Prints HTML with meta information for the current post-date/time and author.
  3. * Create your own priimo_posted_on to override in a child theme
  4. */
  5. if (!function_exists('priimo_posted_on')):
  6. function priimo_posted_on() {
  7. printf(__('<span class="entry-date"><a href="%1$s" title="%2$s" rel="bookmark">%3$s</a></span><span class="entry-author"><a href="%4$s" title="%5$s" rel="author">%6$s</a></span>', 'priimo' ),
  8. esc_url(get_permalink()),
  9. esc_attr(get_the_time()),
  10. esc_attr(sprintf(__('Посмотреть все записи %s', 'priimo'), get_the_author())),
  11. get_the_author()
  12. );
  13. }
  14. endif;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement