author | ymh <ymh.work@gmail.com> |
Mon, 08 Sep 2025 19:44:41 +0200 | |
changeset 23 | 417f20492bf7 |
parent 21 | 48c4eec2b7e6 |
permissions | -rw-r--r-- |
9 | 1 |
<?php |
2 |
/** |
|
3 |
* Server-side rendering of the `core/archives` block. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
*/ |
|
7 |
||
8 |
/** |
|
9 |
* Renders the `core/archives` block on server. |
|
10 |
* |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
11 |
* @since 5.0.0 |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
12 |
* |
9 | 13 |
* @see WP_Widget_Archives |
14 |
* |
|
15 |
* @param array $attributes The block attributes. |
|
16 |
* |
|
17 |
* @return string Returns the post content with archives added. |
|
18 |
*/ |
|
19 |
function render_block_core_archives( $attributes ) { |
|
20 |
$show_post_count = ! empty( $attributes['showPostCounts'] ); |
|
19 | 21 |
$type = isset( $attributes['type'] ) ? $attributes['type'] : 'monthly'; |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
22 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
23 |
$class = 'wp-block-archives-list'; |
9 | 24 |
|
25 |
if ( ! empty( $attributes['displayAsDropdown'] ) ) { |
|
26 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
27 |
$class = 'wp-block-archives-dropdown'; |
9 | 28 |
|
19 | 29 |
$dropdown_id = wp_unique_id( 'wp-block-archives-' ); |
9 | 30 |
$title = __( 'Archives' ); |
31 |
||
32 |
/** This filter is documented in wp-includes/widgets/class-wp-widget-archives.php */ |
|
33 |
$dropdown_args = apply_filters( |
|
34 |
'widget_archives_dropdown_args', |
|
35 |
array( |
|
19 | 36 |
'type' => $type, |
9 | 37 |
'format' => 'option', |
38 |
'show_post_count' => $show_post_count, |
|
39 |
) |
|
40 |
); |
|
41 |
||
42 |
$dropdown_args['echo'] = 0; |
|
43 |
||
44 |
$archives = wp_get_archives( $dropdown_args ); |
|
45 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
46 |
$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $class ) ); |
19 | 47 |
|
9 | 48 |
switch ( $dropdown_args['type'] ) { |
49 |
case 'yearly': |
|
50 |
$label = __( 'Select Year' ); |
|
51 |
break; |
|
52 |
case 'monthly': |
|
53 |
$label = __( 'Select Month' ); |
|
54 |
break; |
|
55 |
case 'daily': |
|
56 |
$label = __( 'Select Day' ); |
|
57 |
break; |
|
58 |
case 'weekly': |
|
59 |
$label = __( 'Select Week' ); |
|
60 |
break; |
|
61 |
default: |
|
62 |
$label = __( 'Select Post' ); |
|
63 |
break; |
|
64 |
} |
|
65 |
||
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
66 |
$show_label = empty( $attributes['showLabel'] ) ? ' screen-reader-text' : ''; |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
67 |
|
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
68 |
$block_content = '<label for="' . $dropdown_id . '" class="wp-block-archives__label' . $show_label . '">' . esc_html( $title ) . '</label> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
69 |
<select id="' . $dropdown_id . '" name="archive-dropdown" onchange="document.location.href=this.options[this.selectedIndex].value;"> |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
70 |
<option value="">' . esc_html( $label ) . '</option>' . $archives . '</select>'; |
9 | 71 |
|
16 | 72 |
return sprintf( |
19 | 73 |
'<div %1$s>%2$s</div>', |
74 |
$wrapper_attributes, |
|
9 | 75 |
$block_content |
76 |
); |
|
77 |
} |
|
78 |
||
16 | 79 |
/** This filter is documented in wp-includes/widgets/class-wp-widget-archives.php */ |
80 |
$archives_args = apply_filters( |
|
81 |
'widget_archives_args', |
|
82 |
array( |
|
19 | 83 |
'type' => $type, |
16 | 84 |
'show_post_count' => $show_post_count, |
85 |
) |
|
86 |
); |
|
87 |
||
88 |
$archives_args['echo'] = 0; |
|
89 |
||
90 |
$archives = wp_get_archives( $archives_args ); |
|
91 |
||
19 | 92 |
$wrapper_attributes = get_block_wrapper_attributes( array( 'class' => $class ) ); |
18 | 93 |
|
16 | 94 |
if ( empty( $archives ) ) { |
95 |
return sprintf( |
|
18 | 96 |
'<div %1$s>%2$s</div>', |
97 |
$wrapper_attributes, |
|
16 | 98 |
__( 'No archives to show.' ) |
99 |
); |
|
100 |
} |
|
101 |
||
102 |
return sprintf( |
|
18 | 103 |
'<ul %1$s>%2$s</ul>', |
104 |
$wrapper_attributes, |
|
16 | 105 |
$archives |
106 |
); |
|
9 | 107 |
} |
108 |
||
109 |
/** |
|
110 |
* Register archives block. |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
111 |
* |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
112 |
* @since 5.0.0 |
9 | 113 |
*/ |
114 |
function register_block_core_archives() { |
|
16 | 115 |
register_block_type_from_metadata( |
116 |
__DIR__ . '/archives', |
|
9 | 117 |
array( |
118 |
'render_callback' => 'render_block_core_archives', |
|
119 |
) |
|
120 |
); |
|
121 |
} |
|
122 |
add_action( 'init', 'register_block_core_archives' ); |