PluginProbe ʕ •ᴥ•ʔ
Kubio AI Page Builder / 1.2.3
Kubio AI Page Builder v1.2.3
2.9.1 2.9.0 2.8.6 2.8.5 2.8.4 2.8.3 2.8.2 2.8.1 trunk 1.0.0 1.0.1 1.1.0 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.7.0 1.7.1 1.7.2 1.7.3 1.8.0 1.8.1 1.8.2 1.9.0 2.0.0 2.1.1 2.1.2 2.1.3 2.2.0 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.3.3 2.3.4 2.4.0 2.4.1 2.4.2 2.4.3 2.4.5 2.5.0 2.5.1 2.5.2 2.5.3 2.6.0 2.6.1 2.6.2 2.6.3 2.6.5 2.6.6 2.6.7 2.7.0 2.7.1 2.7.2 2.7.3 2.8.0
kubio / lib / blog / comments.php
kubio / lib / blog Last commit date
comments.php 4 years ago
comments.php
82 lines
1 <?php
2 if ( post_password_required() ) :
3 return;
4 endif;
5 global $kubio_comments_data;
6
7 ?>
8
9 <div id="comments" class="post-comments">
10 <h4 class="comments-title">
11 <span class="comments-number">
12 <?php
13 comments_number(
14 $kubio_comments_data['none'],
15 $kubio_comments_data['one'],
16 str_replace( '{COMMENTS-COUNT}', '%', $kubio_comments_data['multiple'] )
17 );
18 ?>
19 </span>
20 </h4>
21
22 <ol class="comment-list">
23 <?php
24 wp_list_comments(
25 array(
26 'avatar_size' => $kubio_comments_data['avatar_size'],
27 'format' => 'html5',
28 )
29 );
30 ?>
31 </ol>
32
33 <?php
34 if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
35 ?>
36 <div class="h-row">
37 <div class="h-col h-col-auto">
38 <div class="prev-posts">
39 <?php
40 previous_comments_link(
41 sprintf(
42 '&#xab; %s',
43 __(
44 'Older Comments',
45 'kubio'
46 )
47 )
48 );
49 ?>
50 </div>
51 </div>
52 <div class="h-col"></div>
53 <div class="h-col h-col-auto">
54 <div class="next-posts">
55 <?php
56 next_comments_link(
57 sprintf(
58 '%s &#xbb;',
59 __(
60 'Newer Comments',
61 'kubio'
62 )
63 )
64 );
65 ?>
66 </div>
67 </div>
68 </div>
69 <?php
70 endif;
71 ?>
72
73 <?php
74 if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
75 ?>
76 <p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'kubio' ); ?></p>
77 <?php
78 endif;
79 ?>
80
81 </div>
82