author | ymh <ymh.work@gmail.com> |
Fri, 05 Sep 2025 18:52:52 +0200 | |
changeset 22 | 8c2e4d02f4ef |
parent 21 | 48c4eec2b7e6 |
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 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
9 |
_deprecated_file( |
16 | 10 |
/* translators: %s: Template name. */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
11 |
sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
12 |
'3.0.0', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
13 |
null, |
16 | 14 |
/* translators: %s: Template name. */ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
15 |
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
|
16 |
); |
0 | 17 |
|
16 | 18 |
// Do not delete these lines. |
19 |
if ( ! empty( $_SERVER['SCRIPT_FILENAME'] ) && 'comments.php' === basename( $_SERVER['SCRIPT_FILENAME'] ) ) { |
|
9 | 20 |
die( 'Please do not load this page directly. Thanks!' ); |
21 |
} |
|
0 | 22 |
|
9 | 23 |
if ( post_password_required() ) { ?> |
24 |
<p class="nocomments"><?php _e( 'This post is password protected. Enter the password to view comments.' ); ?></p> |
|
0 | 25 |
<?php |
9 | 26 |
return; |
27 |
} |
|
0 | 28 |
?> |
29 |
||
30 |
<!-- You can start editing here. --> |
|
31 |
||
32 |
<?php if ( have_comments() ) : ?> |
|
5 | 33 |
<h3 id="comments"> |
34 |
<?php |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
16
diff
changeset
|
35 |
if ( '1' === get_comments_number() ) { |
16 | 36 |
printf( |
37 |
/* translators: %s: Post title. */ |
|
38 |
__( 'One response to %s' ), |
|
39 |
'“' . get_the_title() . '”' |
|
40 |
); |
|
9 | 41 |
} else { |
42 |
printf( |
|
16 | 43 |
/* translators: 1: Number of comments, 2: Post title. */ |
9 | 44 |
_n( '%1$s response to %2$s', '%1$s responses to %2$s', get_comments_number() ), |
45 |
number_format_i18n( get_comments_number() ), |
|
46 |
'“' . get_the_title() . '”' |
|
47 |
); |
|
48 |
} |
|
5 | 49 |
?> |
50 |
</h3> |
|
0 | 51 |
|
52 |
<div class="navigation"> |
|
9 | 53 |
<div class="alignleft"><?php previous_comments_link(); ?></div> |
54 |
<div class="alignright"><?php next_comments_link(); ?></div> |
|
0 | 55 |
</div> |
56 |
||
57 |
<ol class="commentlist"> |
|
9 | 58 |
<?php wp_list_comments(); ?> |
0 | 59 |
</ol> |
60 |
||
61 |
<div class="navigation"> |
|
9 | 62 |
<div class="alignleft"><?php previous_comments_link(); ?></div> |
63 |
<div class="alignright"><?php next_comments_link(); ?></div> |
|
0 | 64 |
</div> |
16 | 65 |
<?php else : // This is displayed if there are no comments so far. ?> |
0 | 66 |
|
67 |
<?php if ( comments_open() ) : ?> |
|
68 |
<!-- If comments are open, but there are no comments. --> |
|
69 |
||
16 | 70 |
<?php else : // Comments are closed. ?> |
0 | 71 |
<!-- If comments are closed. --> |
9 | 72 |
<p class="nocomments"><?php _e( 'Comments are closed.' ); ?></p> |
0 | 73 |
|
74 |
<?php endif; ?> |
|
75 |
<?php endif; ?> |
|
76 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
77 |
<?php comment_form(); ?> |