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 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
3 |
* Bookmark Template Functions for usage in Themes. |
0 | 4 |
* |
5 |
* @package WordPress |
|
6 |
* @subpackage Template |
|
7 |
*/ |
|
8 |
||
9 |
/** |
|
10 |
* The formatted output of a list of bookmarks. |
|
11 |
* |
|
12 |
* The $bookmarks array must contain bookmark objects and will be iterated over |
|
13 |
* to retrieve the bookmark to be used in the output. |
|
14 |
* |
|
15 |
* The output is formatted as HTML with no way to change that format. However, |
|
16 |
* what is between, before, and after can be changed. The link itself will be |
|
17 |
* HTML. |
|
18 |
* |
|
19 |
* This function is used internally by wp_list_bookmarks() and should not be |
|
20 |
* used by themes. |
|
21 |
* |
|
22 |
* @since 2.1.0 |
|
23 |
* @access private |
|
24 |
* |
|
16 | 25 |
* @param array $bookmarks List of bookmarks to traverse. |
5 | 26 |
* @param string|array $args { |
27 |
* Optional. Bookmarks arguments. |
|
28 |
* |
|
29 |
* @type int|bool $show_updated Whether to show the time the bookmark was last updated. |
|
30 |
* Accepts 1|true or 0|false. Default 0|false. |
|
9 | 31 |
* @type int|bool $show_description Whether to show the bookmark description. Accepts 1|true, |
5 | 32 |
* Accepts 1|true or 0|false. Default 0|false. |
33 |
* @type int|bool $show_images Whether to show the link image if available. Accepts 1|true |
|
34 |
* or 0|false. Default 1|true. |
|
35 |
* @type int|bool $show_name Whether to show link name if available. Accepts 1|true or |
|
36 |
* 0|false. Default 0|false. |
|
37 |
* @type string $before The HTML or text to prepend to each bookmark. Default `<li>`. |
|
38 |
* @type string $after The HTML or text to append to each bookmark. Default `</li>`. |
|
39 |
* @type string $link_before The HTML or text to prepend to each bookmark inside the anchor |
|
40 |
* tags. Default empty. |
|
41 |
* @type string $link_after The HTML or text to append to each bookmark inside the anchor |
|
42 |
* tags. Default empty. |
|
43 |
* @type string $between The string for use in between the link, description, and image. |
|
44 |
* Default "\n". |
|
45 |
* @type int|bool $show_rating Whether to show the link rating. Accepts 1|true or 0|false. |
|
46 |
* Default 0|false. |
|
47 |
* |
|
48 |
* } |
|
0 | 49 |
* @return string Formatted output in HTML |
50 |
*/ |
|
5 | 51 |
function _walk_bookmarks( $bookmarks, $args = '' ) { |
0 | 52 |
$defaults = array( |
9 | 53 |
'show_updated' => 0, |
54 |
'show_description' => 0, |
|
55 |
'show_images' => 1, |
|
56 |
'show_name' => 0, |
|
57 |
'before' => '<li>', |
|
58 |
'after' => '</li>', |
|
59 |
'between' => "\n", |
|
60 |
'show_rating' => 0, |
|
61 |
'link_before' => '', |
|
62 |
'link_after' => '', |
|
0 | 63 |
); |
64 |
||
16 | 65 |
$parsed_args = wp_parse_args( $args, $defaults ); |
0 | 66 |
|
67 |
$output = ''; // Blank string to start with. |
|
68 |
||
69 |
foreach ( (array) $bookmarks as $bookmark ) { |
|
5 | 70 |
if ( ! isset( $bookmark->recently_updated ) ) { |
0 | 71 |
$bookmark->recently_updated = false; |
5 | 72 |
} |
16 | 73 |
$output .= $parsed_args['before']; |
74 |
if ( $parsed_args['show_updated'] && $bookmark->recently_updated ) { |
|
5 | 75 |
$output .= '<em>'; |
76 |
} |
|
0 | 77 |
$the_link = '#'; |
5 | 78 |
if ( ! empty( $bookmark->link_url ) ) { |
79 |
$the_link = esc_url( $bookmark->link_url ); |
|
80 |
} |
|
9 | 81 |
$desc = esc_attr( sanitize_bookmark_field( 'link_description', $bookmark->link_description, $bookmark->link_id, 'display' ) ); |
82 |
$name = esc_attr( sanitize_bookmark_field( 'link_name', $bookmark->link_name, $bookmark->link_id, 'display' ) ); |
|
83 |
$title = $desc; |
|
0 | 84 |
|
16 | 85 |
if ( $parsed_args['show_updated'] ) { |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
86 |
if ( ! str_starts_with( $bookmark->link_updated_f, '00' ) ) { |
0 | 87 |
$title .= ' ('; |
5 | 88 |
$title .= sprintf( |
16 | 89 |
/* translators: %s: Date and time of last update. */ |
9 | 90 |
__( 'Last updated: %s' ), |
16 | 91 |
gmdate( |
5 | 92 |
get_option( 'links_updated_date_format' ), |
22
8c2e4d02f4ef
Update WordPress to latest version (6.7)
ymh <ymh.work@gmail.com>
parents:
21
diff
changeset
|
93 |
$bookmark->link_updated_f + (int) ( (float) get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ) |
5 | 94 |
) |
95 |
); |
|
0 | 96 |
$title .= ')'; |
97 |
} |
|
5 | 98 |
} |
16 | 99 |
$alt = ' alt="' . $name . ( $parsed_args['show_description'] ? ' ' . $title : '' ) . '"'; |
0 | 100 |
|
16 | 101 |
if ( '' !== $title ) { |
0 | 102 |
$title = ' title="' . $title . '"'; |
5 | 103 |
} |
0 | 104 |
$rel = $bookmark->link_rel; |
19 | 105 |
|
106 |
$target = $bookmark->link_target; |
|
107 |
if ( '' !== $target ) { |
|
108 |
$target = ' target="' . $target . '"'; |
|
109 |
} |
|
110 |
||
16 | 111 |
if ( '' !== $rel ) { |
9 | 112 |
$rel = ' rel="' . esc_attr( $rel ) . '"'; |
5 | 113 |
} |
19 | 114 |
|
0 | 115 |
$output .= '<a href="' . $the_link . '"' . $rel . $title . $target . '>'; |
116 |
||
16 | 117 |
$output .= $parsed_args['link_before']; |
0 | 118 |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
119 |
if ( '' !== $bookmark->link_image && $parsed_args['show_images'] ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
120 |
if ( str_starts_with( $bookmark->link_image, 'http' ) ) { |
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
121 |
$output .= '<img src="' . $bookmark->link_image . '"' . $alt . $title . ' />'; |
16 | 122 |
} else { // If it's a relative path. |
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
123 |
$output .= '<img src="' . get_option( 'siteurl' ) . $bookmark->link_image . '"' . $alt . $title . ' />'; |
5 | 124 |
} |
16 | 125 |
if ( $parsed_args['show_name'] ) { |
0 | 126 |
$output .= " $name"; |
5 | 127 |
} |
0 | 128 |
} else { |
129 |
$output .= $name; |
|
130 |
} |
|
131 |
||
16 | 132 |
$output .= $parsed_args['link_after']; |
0 | 133 |
|
134 |
$output .= '</a>'; |
|
135 |
||
16 | 136 |
if ( $parsed_args['show_updated'] && $bookmark->recently_updated ) { |
5 | 137 |
$output .= '</em>'; |
138 |
} |
|
139 |
||
16 | 140 |
if ( $parsed_args['show_description'] && '' !== $desc ) { |
141 |
$output .= $parsed_args['between'] . $desc; |
|
5 | 142 |
} |
0 | 143 |
|
16 | 144 |
if ( $parsed_args['show_rating'] ) { |
145 |
$output .= $parsed_args['between'] . sanitize_bookmark_field( |
|
5 | 146 |
'link_rating', |
147 |
$bookmark->link_rating, |
|
148 |
$bookmark->link_id, |
|
149 |
'display' |
|
150 |
); |
|
151 |
} |
|
16 | 152 |
$output .= $parsed_args['after'] . "\n"; |
153 |
} // End while. |
|
0 | 154 |
|
155 |
return $output; |
|
156 |
} |
|
157 |
||
158 |
/** |
|
21
48c4eec2b7e6
Add CLAUDE.md documentation and sync WordPress core files
ymh <ymh.work@gmail.com>
parents:
19
diff
changeset
|
159 |
* Retrieves or echoes all of the bookmarks. |
0 | 160 |
* |
161 |
* List of default arguments are as follows: |
|
162 |
* |
|
163 |
* These options define how the Category name will appear before the category |
|
164 |
* links are displayed, if 'categorize' is 1. If 'categorize' is 0, then it will |
|
165 |
* display for only the 'title_li' string and only if 'title_li' is not empty. |
|
166 |
* |
|
167 |
* @since 2.1.0 |
|
5 | 168 |
* |
169 |
* @see _walk_bookmarks() |
|
170 |
* |
|
171 |
* @param string|array $args { |
|
172 |
* Optional. String or array of arguments to list bookmarks. |
|
0 | 173 |
* |
18 | 174 |
* @type string $orderby How to order the links by. Accepts post fields. Default 'name'. |
175 |
* @type string $order Whether to order bookmarks in ascending or descending order. |
|
176 |
* Accepts 'ASC' (ascending) or 'DESC' (descending). Default 'ASC'. |
|
177 |
* @type int $limit Amount of bookmarks to display. Accepts 1+ or -1 for all. |
|
178 |
* Default -1. |
|
179 |
* @type string $category Comma-separated list of category IDs to include links from. |
|
180 |
* Default empty. |
|
181 |
* @type string $category_name Category to retrieve links for by name. Default empty. |
|
182 |
* @type int|bool $hide_invisible Whether to show or hide links marked as 'invisible'. Accepts |
|
183 |
* 1|true or 0|false. Default 1|true. |
|
184 |
* @type int|bool $show_updated Whether to display the time the bookmark was last updated. |
|
185 |
* Accepts 1|true or 0|false. Default 0|false. |
|
186 |
* @type int|bool $echo Whether to echo or return the formatted bookmarks. Accepts |
|
187 |
* 1|true (echo) or 0|false (return). Default 1|true. |
|
188 |
* @type int|bool $categorize Whether to show links listed by category or in a single column. |
|
189 |
* Accepts 1|true (by category) or 0|false (one column). Default 1|true. |
|
190 |
* @type int|bool $show_description Whether to show the bookmark descriptions. Accepts 1|true or 0|false. |
|
191 |
* Default 0|false. |
|
192 |
* @type string $title_li What to show before the links appear. Default 'Bookmarks'. |
|
193 |
* @type string $title_before The HTML or text to prepend to the $title_li string. Default '<h2>'. |
|
194 |
* @type string $title_after The HTML or text to append to the $title_li string. Default '</h2>'. |
|
195 |
* @type string|array $class The CSS class or an array of classes to use for the $title_li. |
|
196 |
* Default 'linkcat'. |
|
197 |
* @type string $category_before The HTML or text to prepend to $title_before if $categorize is true. |
|
198 |
* String must contain '%id' and '%class' to inherit the category ID and |
|
199 |
* the $class argument used for formatting in themes. |
|
200 |
* Default '<li id="%id" class="%class">'. |
|
201 |
* @type string $category_after The HTML or text to append to $title_after if $categorize is true. |
|
202 |
* Default '</li>'. |
|
203 |
* @type string $category_orderby How to order the bookmark category based on term scheme if $categorize |
|
204 |
* is true. Default 'name'. |
|
205 |
* @type string $category_order Whether to order categories in ascending or descending order if |
|
206 |
* $categorize is true. Accepts 'ASC' (ascending) or 'DESC' (descending). |
|
207 |
* Default 'ASC'. |
|
5 | 208 |
* } |
16 | 209 |
* @return void|string Void if 'echo' argument is true, HTML list of bookmarks if 'echo' is false. |
0 | 210 |
*/ |
5 | 211 |
function wp_list_bookmarks( $args = '' ) { |
0 | 212 |
$defaults = array( |
9 | 213 |
'orderby' => 'name', |
214 |
'order' => 'ASC', |
|
215 |
'limit' => -1, |
|
216 |
'category' => '', |
|
217 |
'exclude_category' => '', |
|
218 |
'category_name' => '', |
|
219 |
'hide_invisible' => 1, |
|
220 |
'show_updated' => 0, |
|
221 |
'echo' => 1, |
|
222 |
'categorize' => 1, |
|
223 |
'title_li' => __( 'Bookmarks' ), |
|
224 |
'title_before' => '<h2>', |
|
225 |
'title_after' => '</h2>', |
|
226 |
'category_orderby' => 'name', |
|
227 |
'category_order' => 'ASC', |
|
228 |
'class' => 'linkcat', |
|
229 |
'category_before' => '<li id="%id" class="%class">', |
|
230 |
'category_after' => '</li>', |
|
0 | 231 |
); |
232 |
||
16 | 233 |
$parsed_args = wp_parse_args( $args, $defaults ); |
0 | 234 |
|
235 |
$output = ''; |
|
236 |
||
16 | 237 |
if ( ! is_array( $parsed_args['class'] ) ) { |
238 |
$parsed_args['class'] = explode( ' ', $parsed_args['class'] ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
239 |
} |
16 | 240 |
$parsed_args['class'] = array_map( 'sanitize_html_class', $parsed_args['class'] ); |
18 | 241 |
$parsed_args['class'] = trim( implode( ' ', $parsed_args['class'] ) ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
242 |
|
16 | 243 |
if ( $parsed_args['categorize'] ) { |
9 | 244 |
$cats = get_terms( |
245 |
array( |
|
16 | 246 |
'taxonomy' => 'link_category', |
247 |
'name__like' => $parsed_args['category_name'], |
|
248 |
'include' => $parsed_args['category'], |
|
249 |
'exclude' => $parsed_args['exclude_category'], |
|
250 |
'orderby' => $parsed_args['category_orderby'], |
|
251 |
'order' => $parsed_args['category_order'], |
|
9 | 252 |
'hierarchical' => 0, |
253 |
) |
|
254 |
); |
|
5 | 255 |
if ( empty( $cats ) ) { |
16 | 256 |
$parsed_args['categorize'] = false; |
5 | 257 |
} |
0 | 258 |
} |
259 |
||
16 | 260 |
if ( $parsed_args['categorize'] ) { |
261 |
// Split the bookmarks into ul's for each category. |
|
0 | 262 |
foreach ( (array) $cats as $cat ) { |
16 | 263 |
$params = array_merge( $parsed_args, array( 'category' => $cat->term_id ) ); |
5 | 264 |
$bookmarks = get_bookmarks( $params ); |
265 |
if ( empty( $bookmarks ) ) { |
|
0 | 266 |
continue; |
5 | 267 |
} |
268 |
$output .= str_replace( |
|
269 |
array( '%id', '%class' ), |
|
16 | 270 |
array( "linkcat-$cat->term_id", $parsed_args['class'] ), |
271 |
$parsed_args['category_before'] |
|
5 | 272 |
); |
0 | 273 |
/** |
9 | 274 |
* Filters the category name. |
0 | 275 |
* |
276 |
* @since 2.2.0 |
|
277 |
* |
|
9 | 278 |
* @param string $cat_name The category name. |
0 | 279 |
*/ |
280 |
$catname = apply_filters( 'link_category', $cat->name ); |
|
281 |
||
16 | 282 |
$output .= $parsed_args['title_before']; |
5 | 283 |
$output .= $catname; |
16 | 284 |
$output .= $parsed_args['title_after']; |
5 | 285 |
$output .= "\n\t<ul class='xoxo blogroll'>\n"; |
16 | 286 |
$output .= _walk_bookmarks( $bookmarks, $parsed_args ); |
5 | 287 |
$output .= "\n\t</ul>\n"; |
16 | 288 |
$output .= $parsed_args['category_after'] . "\n"; |
0 | 289 |
} |
290 |
} else { |
|
16 | 291 |
// Output one single list using title_li for the title. |
292 |
$bookmarks = get_bookmarks( $parsed_args ); |
|
0 | 293 |
|
5 | 294 |
if ( ! empty( $bookmarks ) ) { |
16 | 295 |
if ( ! empty( $parsed_args['title_li'] ) ) { |
5 | 296 |
$output .= str_replace( |
297 |
array( '%id', '%class' ), |
|
16 | 298 |
array( 'linkcat-' . $parsed_args['category'], $parsed_args['class'] ), |
299 |
$parsed_args['category_before'] |
|
5 | 300 |
); |
16 | 301 |
$output .= $parsed_args['title_before']; |
302 |
$output .= $parsed_args['title_li']; |
|
303 |
$output .= $parsed_args['title_after']; |
|
5 | 304 |
$output .= "\n\t<ul class='xoxo blogroll'>\n"; |
16 | 305 |
$output .= _walk_bookmarks( $bookmarks, $parsed_args ); |
5 | 306 |
$output .= "\n\t</ul>\n"; |
16 | 307 |
$output .= $parsed_args['category_after'] . "\n"; |
0 | 308 |
} else { |
16 | 309 |
$output .= _walk_bookmarks( $bookmarks, $parsed_args ); |
0 | 310 |
} |
311 |
} |
|
312 |
} |
|
313 |
||
314 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
315 |
* Filters the bookmarks list before it is echoed or returned. |
0 | 316 |
* |
317 |
* @since 2.5.0 |
|
318 |
* |
|
5 | 319 |
* @param string $html The HTML list of bookmarks. |
0 | 320 |
*/ |
5 | 321 |
$html = apply_filters( 'wp_list_bookmarks', $output ); |
0 | 322 |
|
16 | 323 |
if ( $parsed_args['echo'] ) { |
324 |
echo $html; |
|
325 |
} else { |
|
5 | 326 |
return $html; |
327 |
} |
|
0 | 328 |
} |