author | ymh <ymh.work@gmail.com> |
Mon, 14 Oct 2019 17:39:30 +0200 | |
changeset 7 | cf61fcea0001 |
parent 5 | 5e2f62d02dcd |
child 9 | 177826044cd9 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* @package WordPress |
|
4 |
* @subpackage Theme_Compat |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
5 |
* @deprecated 3.0.0 |
0 | 6 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
7 |
* This file is here for backward compatibility with old themes and will be removed in a future version |
0 | 8 |
* |
9 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
10 |
_deprecated_file( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
11 |
/* translators: %s: template name */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
12 |
sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
13 |
'3.0.0', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
14 |
null, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
15 |
/* translators: %s: template name */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
16 |
sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) ) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
17 |
); |
0 | 18 |
|
19 |
// Do not delete these lines |
|
20 |
if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) |
|
21 |
die ('Please do not load this page directly. Thanks!'); |
|
22 |
||
23 |
if ( post_password_required() ) { ?> |
|
24 |
<p class="nocomments"><?php _e('This post is password protected. Enter the password to view comments.'); ?></p> |
|
25 |
<?php |
|
26 |
return; |
|
27 |
} |
|
28 |
?> |
|
29 |
||
30 |
<!-- You can start editing here. --> |
|
31 |
||
32 |
<?php if ( have_comments() ) : ?> |
|
5 | 33 |
<h3 id="comments"> |
34 |
<?php |
|
35 |
if ( 1 == get_comments_number() ) { |
|
36 |
/* translators: %s: post title */ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
37 |
printf( __( 'One response to %s' ), '“' . get_the_title() . '”' ); |
5 | 38 |
} else { |
39 |
/* translators: 1: number of comments, 2: post title */ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
40 |
printf( _n( '%1$s response to %2$s', '%1$s responses to %2$s', get_comments_number() ), |
5 | 41 |
number_format_i18n( get_comments_number() ), '“' . get_the_title() . '”' ); |
42 |
} |
|
43 |
?> |
|
44 |
</h3> |
|
0 | 45 |
|
46 |
<div class="navigation"> |
|
47 |
<div class="alignleft"><?php previous_comments_link() ?></div> |
|
48 |
<div class="alignright"><?php next_comments_link() ?></div> |
|
49 |
</div> |
|
50 |
||
51 |
<ol class="commentlist"> |
|
52 |
<?php wp_list_comments();?> |
|
53 |
</ol> |
|
54 |
||
55 |
<div class="navigation"> |
|
56 |
<div class="alignleft"><?php previous_comments_link() ?></div> |
|
57 |
<div class="alignright"><?php next_comments_link() ?></div> |
|
58 |
</div> |
|
59 |
<?php else : // this is displayed if there are no comments so far ?> |
|
60 |
||
61 |
<?php if ( comments_open() ) : ?> |
|
62 |
<!-- If comments are open, but there are no comments. --> |
|
63 |
||
64 |
<?php else : // comments are closed ?> |
|
65 |
<!-- If comments are closed. --> |
|
66 |
<p class="nocomments"><?php _e('Comments are closed.'); ?></p> |
|
67 |
||
68 |
<?php endif; ?> |
|
69 |
<?php endif; ?> |
|
70 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
71 |
<?php comment_form(); ?> |