Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Prints HTML with meta information for the current post-date/time and author.
- * Create your own priimo_posted_on to override in a child theme
- */
- if (!function_exists('priimo_posted_on')):
- function priimo_posted_on() {
- 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' ),
- esc_url(get_permalink()),
- esc_attr(get_the_time()),
- esc_attr(sprintf(__('Посмотреть все записи %s', 'priimo'), get_the_author())),
- get_the_author()
- );
- }
- endif;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement