Advertisement
rdusnr

Untitled

Aug 2nd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.97 KB | None | 0 0
  1.  
  2. if ( ! function_exists( 'kleo_entry_meta' ) ) :
  3. /**
  4. * Prints HTML with meta information for current post: categories, tags, permalink, author, and date.
  5. * Create your own kleo_entry_meta() to override in a child theme.
  6. * @since 1.0
  7. */
  8. function kleo_entry_meta( $echo = true, $att = array() ) {
  9.  
  10. global $kleo_config;
  11. $meta_list = array();
  12. $author_links = '';
  13. $meta_elements = sq_option( 'blog_meta_elements', $kleo_config['blog_meta_defaults'] );
  14.  
  15. // Translators: used between list items, there is a space after the comma.
  16. if ( in_array( 'categories', $meta_elements ) ) {
  17. $categories_list = get_the_category_list( __( ', ', 'kleo_framework' ) );
  18. }
  19.  
  20. // Translators: used between list items, there is a space after the comma.
  21. if ( in_array( 'tags', $meta_elements ) ) {
  22. $tag_list = get_the_tag_list( '', __( ', ', 'kleo_framework' ) );
  23. }
  24.  
  25. $date = sprintf( '<a href="%1$s" rel="bookmark" class="post-time">' .
  26. '<time class="entry-date" datetime="%2$s">%3$s</time>' .
  27. '<time class="modify-date hide hidden updated" datetime="%4$s">%5$s</time>' .
  28. '</a>',
  29. esc_url( get_permalink() ),
  30. esc_attr( get_the_date( 'c' ) ),
  31. esc_html( get_the_date() ),
  32. esc_html( get_the_modified_date( 'c' ) ),
  33. esc_html( get_the_modified_date() )
  34. );
  35.  
  36.  
  37. if ( is_array( $meta_elements ) && ! empty( $meta_elements ) ) {
  38.  
  39.  
  40. if ( in_array( 'author_link', $meta_elements ) || in_array( 'avatar', $meta_elements ) ) {
  41.  
  42.  
  43. $author_link = esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) );
  44. $author_title = esc_attr( sprintf( __( 'View all POSTS by %s', 'kleo_framework' ), get_the_author() ) );
  45.  
  46.  
  47. $author = sprintf( '<a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s %4$s</a>',
  48. $author_link,
  49. $author_title,
  50. in_array( 'avatar', $meta_elements ) ? get_avatar( get_the_author_meta( 'ID' ), 50 ) : '',
  51. in_array( 'author_link', $meta_elements ) ? '<span class="author-name">' . get_the_author() . '</span>' : ''
  52. );
  53.  
  54. $meta_list[] = '<small class="meta-author author vcard">' . $author . '</small>';
  55. }
  56.  
  57. if ( function_exists( 'bp_is_active' ) ) {
  58. if ( in_array( 'profile', $meta_elements ) ) {
  59. $author_links .= '<a href="' . bp_core_get_userlink( get_the_author_meta( 'ID' ), $no_anchor = false, $just_link = true ) . '">' .
  60. '<i class="icon-user-1 hover-tip" ' .
  61. 'data-original-title="' . esc_attr( sprintf( __( 'View profile', 'kleo_framework' ), get_the_author() ) ) . '"' .
  62. 'data-toggle="tooltip"' .
  63. 'data-placement="top"></i>' .
  64. '</a>';
  65. }
  66.  
  67. if ( bp_is_active( 'messages' ) && is_user_logged_in() ) {
  68. if ( in_array( 'message', $meta_elements ) ) {
  69. $author_links .= '<a href="' . wp_nonce_url( bp_loggedin_user_domain() . bp_get_messages_slug() . '/compose/?r=' . bp_core_get_username( get_the_author_meta( 'ID' ) ) ) . '">' .
  70. '<i class="icon-mail hover-tip" ' .
  71. 'data-original-title="' . esc_attr( sprintf( __( 'Contact %s', 'kleo_framework' ), get_the_author() ) ) . '" ' .
  72. 'data-toggle="tooltip" ' .
  73. 'data-placement="top"></i>' .
  74. '</a>';
  75. }
  76. }
  77. }
  78.  
  79. if ( in_array( 'archive', $meta_elements ) ) {
  80. $author_links .= '<a href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' .
  81. '<i class="icon-docs hover-tip" ' .
  82. 'data-original-title="' . esc_attr( sprintf( __( 'View all posts by %s', 'kleo_framework' ), get_the_author() ) ) . '" ' .
  83. 'data-toggle="tooltip" ' .
  84. 'data-placement="top"></i>' .
  85. '</a>';
  86. }
  87. }
  88.  
  89. if ( '' != $author_links ) {
  90. $meta_list[] = '<small class="meta-links">' . $author_links . '</small>';
  91. }
  92.  
  93. if ( in_array( 'date', $meta_elements ) ) {
  94. $meta_list[] = '<small>' . $date . '</small>';
  95. }
  96.  
  97. $cat_tag = array();
  98.  
  99. if ( isset( $categories_list ) && $categories_list ) {
  100. $cat_tag[] = $categories_list;
  101. }
  102.  
  103. if ( isset( $tag_list ) && $tag_list ) {
  104. $cat_tag[] = $tag_list;
  105. }
  106. if ( ! empty( $cat_tag ) ) {
  107. $meta_list[] = '<small class="meta-category">' . implode( ', ', $cat_tag ) . '</small>';
  108. }
  109.  
  110. //comments
  111. if ( ( ! isset( $att['comments'] ) || ( isset( $att['comments'] ) && false != $att['comments'] ) ) && in_array( 'comments', $meta_elements ) ) {
  112. $meta_list[] = '<small class="meta-comment-count"><a href="' . get_permalink() . '#comments">' . get_comments_number() .
  113. ' <i class="icon-chat-1 hover-tip" ' .
  114. 'data-original-title="' . sprintf( _n( 'This article has one comment', 'This article has %1$s comments', get_comments_number(), 'kleo_framework' ), number_format_i18n( get_comments_number() ) ) . '" ' .
  115. 'data-toggle="tooltip" ' .
  116. 'data-placement="top"></i>' .
  117. '</a></small>';
  118. }
  119.  
  120.  
  121.  
  122. $meta_separator = isset( $att['separator'] ) ? $att['separator'] : sq_option( 'blog_meta_sep', ', ' );
  123.  
  124. if ( $echo ) {
  125. echo implode( $meta_separator, $meta_list );
  126. } else {
  127. return implode( $meta_separator, $meta_list );
  128. }
  129.  
  130.  
  131. }
  132. endif;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement