author | ymh <ymh.work@gmail.com> |
Mon, 14 Oct 2019 18:28:13 +0200 | |
changeset 9 | 177826044cd9 |
parent 7 | cf61fcea0001 |
child 16 | a86126ab1dd4 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* General template tags that can go anywhere in a template. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Template |
|
7 |
*/ |
|
8 |
||
9 |
/** |
|
10 |
* Load header template. |
|
11 |
* |
|
12 |
* Includes the header template for a theme or if a name is specified then a |
|
13 |
* specialised header will be included. |
|
14 |
* |
|
15 |
* For the parameter, if the file is called "header-special.php" then specify |
|
16 |
* "special". |
|
17 |
* |
|
18 |
* @since 1.5.0 |
|
19 |
* |
|
20 |
* @param string $name The name of the specialised header. |
|
21 |
*/ |
|
22 |
function get_header( $name = null ) { |
|
5 | 23 |
/** |
24 |
* Fires before the header template file is loaded. |
|
25 |
* |
|
26 |
* @since 2.1.0 |
|
27 |
* @since 2.8.0 $name parameter added. |
|
28 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
29 |
* @param string|null $name Name of the specific header file to use. null for the default header. |
5 | 30 |
*/ |
0 | 31 |
do_action( 'get_header', $name ); |
32 |
||
33 |
$templates = array(); |
|
9 | 34 |
$name = (string) $name; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
35 |
if ( '' !== $name ) { |
0 | 36 |
$templates[] = "header-{$name}.php"; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
37 |
} |
0 | 38 |
|
39 |
$templates[] = 'header.php'; |
|
40 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
41 |
locate_template( $templates, true ); |
0 | 42 |
} |
43 |
||
44 |
/** |
|
45 |
* Load footer template. |
|
46 |
* |
|
47 |
* Includes the footer template for a theme or if a name is specified then a |
|
48 |
* specialised footer will be included. |
|
49 |
* |
|
50 |
* For the parameter, if the file is called "footer-special.php" then specify |
|
51 |
* "special". |
|
52 |
* |
|
53 |
* @since 1.5.0 |
|
54 |
* |
|
55 |
* @param string $name The name of the specialised footer. |
|
56 |
*/ |
|
57 |
function get_footer( $name = null ) { |
|
5 | 58 |
/** |
59 |
* Fires before the footer template file is loaded. |
|
60 |
* |
|
61 |
* @since 2.1.0 |
|
62 |
* @since 2.8.0 $name parameter added. |
|
63 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
64 |
* @param string|null $name Name of the specific footer file to use. null for the default footer. |
5 | 65 |
*/ |
0 | 66 |
do_action( 'get_footer', $name ); |
67 |
||
68 |
$templates = array(); |
|
9 | 69 |
$name = (string) $name; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
70 |
if ( '' !== $name ) { |
0 | 71 |
$templates[] = "footer-{$name}.php"; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
72 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
73 |
|
9 | 74 |
$templates[] = 'footer.php'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
75 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
76 |
locate_template( $templates, true ); |
0 | 77 |
} |
78 |
||
79 |
/** |
|
80 |
* Load sidebar template. |
|
81 |
* |
|
82 |
* Includes the sidebar template for a theme or if a name is specified then a |
|
83 |
* specialised sidebar will be included. |
|
84 |
* |
|
85 |
* For the parameter, if the file is called "sidebar-special.php" then specify |
|
86 |
* "special". |
|
87 |
* |
|
88 |
* @since 1.5.0 |
|
89 |
* |
|
90 |
* @param string $name The name of the specialised sidebar. |
|
91 |
*/ |
|
92 |
function get_sidebar( $name = null ) { |
|
5 | 93 |
/** |
94 |
* Fires before the sidebar template file is loaded. |
|
95 |
* |
|
96 |
* @since 2.2.0 |
|
97 |
* @since 2.8.0 $name parameter added. |
|
98 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
99 |
* @param string|null $name Name of the specific sidebar file to use. null for the default sidebar. |
5 | 100 |
*/ |
0 | 101 |
do_action( 'get_sidebar', $name ); |
102 |
||
103 |
$templates = array(); |
|
9 | 104 |
$name = (string) $name; |
105 |
if ( '' !== $name ) { |
|
0 | 106 |
$templates[] = "sidebar-{$name}.php"; |
9 | 107 |
} |
0 | 108 |
|
109 |
$templates[] = 'sidebar.php'; |
|
110 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
111 |
locate_template( $templates, true ); |
0 | 112 |
} |
113 |
||
114 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
115 |
* Loads a template part into a template. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
116 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
117 |
* Provides a simple mechanism for child themes to overload reusable sections of code |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
118 |
* in the theme. |
0 | 119 |
* |
120 |
* Includes the named template part for a theme or if a name is specified then a |
|
121 |
* specialised part will be included. If the theme contains no {slug}.php file |
|
122 |
* then no template will be included. |
|
123 |
* |
|
124 |
* The template is included using require, not require_once, so you may include the |
|
125 |
* same template part multiple times. |
|
126 |
* |
|
127 |
* For the $name parameter, if the file is called "{slug}-special.php" then specify |
|
128 |
* "special". |
|
129 |
* |
|
130 |
* @since 3.0.0 |
|
131 |
* |
|
132 |
* @param string $slug The slug name for the generic template. |
|
133 |
* @param string $name The name of the specialised template. |
|
134 |
*/ |
|
135 |
function get_template_part( $slug, $name = null ) { |
|
5 | 136 |
/** |
137 |
* Fires before the specified template part file is loaded. |
|
138 |
* |
|
139 |
* The dynamic portion of the hook name, `$slug`, refers to the slug name |
|
140 |
* for the generic template part. |
|
141 |
* |
|
142 |
* @since 3.0.0 |
|
143 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
144 |
* @param string $slug The slug name for the generic template. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
145 |
* @param string|null $name The name of the specialized template. |
5 | 146 |
*/ |
0 | 147 |
do_action( "get_template_part_{$slug}", $slug, $name ); |
148 |
||
149 |
$templates = array(); |
|
9 | 150 |
$name = (string) $name; |
151 |
if ( '' !== $name ) { |
|
0 | 152 |
$templates[] = "{$slug}-{$name}.php"; |
9 | 153 |
} |
0 | 154 |
|
155 |
$templates[] = "{$slug}.php"; |
|
156 |
||
9 | 157 |
/** |
158 |
* Fires before a template part is loaded. |
|
159 |
* |
|
160 |
* @since 5.2.0 |
|
161 |
* |
|
162 |
* @param string $slug The slug name for the generic template. |
|
163 |
* @param string $name The name of the specialized template. |
|
164 |
* @param string[] $templates Array of template files to search for, in order. |
|
165 |
*/ |
|
166 |
do_action( 'get_template_part', $slug, $name, $templates ); |
|
167 |
||
168 |
locate_template( $templates, true, false ); |
|
0 | 169 |
} |
170 |
||
171 |
/** |
|
172 |
* Display search form. |
|
173 |
* |
|
174 |
* Will first attempt to locate the searchform.php file in either the child or |
|
175 |
* the parent, then load it. If it doesn't exist, then the default search form |
|
176 |
* will be displayed. The default search form is HTML, which will be displayed. |
|
177 |
* There is a filter applied to the search form HTML in order to edit or replace |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
178 |
* it. The filter is {@see 'get_search_form'}. |
0 | 179 |
* |
180 |
* This function is primarily used by themes which want to hardcode the search |
|
181 |
* form into the sidebar and also by the search widget in WordPress. |
|
182 |
* |
|
183 |
* There is also an action that is called whenever the function is run called, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
184 |
* {@see 'pre_get_search_form'}. This can be useful for outputting JavaScript that the |
0 | 185 |
* search relies on or various formatting that applies to the beginning of the |
186 |
* search. To give a few examples of what it can be used for. |
|
187 |
* |
|
188 |
* @since 2.7.0 |
|
9 | 189 |
* @since 5.2.0 The $args array parameter was added in place of an $echo boolean flag. |
190 |
* |
|
191 |
* @param array $args { |
|
192 |
* Optional. Array of display arguments. |
|
193 |
* |
|
194 |
* @type bool $echo Whether to echo or return the form. Default true. |
|
195 |
* @type string $aria_label ARIA label for the search form. Useful to distinguish |
|
196 |
* multiple search forms on the same page and improve |
|
197 |
* accessibility. Default empty. |
|
198 |
* } |
|
199 |
* @return string|void String when the $echo param is false. |
|
0 | 200 |
*/ |
9 | 201 |
function get_search_form( $args = array() ) { |
5 | 202 |
/** |
203 |
* Fires before the search form is retrieved, at the start of get_search_form(). |
|
204 |
* |
|
205 |
* @since 2.7.0 as 'get_search_form' action. |
|
206 |
* @since 3.6.0 |
|
207 |
* |
|
208 |
* @link https://core.trac.wordpress.org/ticket/19321 |
|
209 |
*/ |
|
0 | 210 |
do_action( 'pre_get_search_form' ); |
211 |
||
9 | 212 |
$echo = true; |
213 |
||
214 |
if ( ! is_array( $args ) ) { |
|
215 |
/* |
|
216 |
* Back compat: to ensure previous uses of get_search_form() continue to |
|
217 |
* function as expected, we handle a value for the boolean $echo param removed |
|
218 |
* in 5.2.0. Then we deal with the $args array and cast its defaults. |
|
219 |
*/ |
|
220 |
$echo = (bool) $args; |
|
221 |
||
222 |
// Set an empty array and allow default arguments to take over. |
|
223 |
$args = array(); |
|
224 |
} |
|
225 |
||
226 |
// Defaults are to echo and to output no custom label on the form. |
|
227 |
$defaults = array( |
|
228 |
'echo' => $echo, |
|
229 |
'aria_label' => '', |
|
230 |
); |
|
231 |
||
232 |
$args = wp_parse_args( $args, $defaults ); |
|
233 |
||
234 |
/** |
|
235 |
* Filters the array of arguments used when generating the search form. |
|
236 |
* |
|
237 |
* @since 5.2.0 |
|
238 |
* |
|
239 |
* @param array $args The array of arguments for building the search form. |
|
240 |
*/ |
|
241 |
$args = apply_filters( 'search_form_args', $args ); |
|
242 |
||
0 | 243 |
$format = current_theme_supports( 'html5', 'search-form' ) ? 'html5' : 'xhtml'; |
5 | 244 |
|
245 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
246 |
* Filters the HTML format of the search form. |
5 | 247 |
* |
248 |
* @since 3.6.0 |
|
249 |
* |
|
250 |
* @param string $format The type of markup to use in the search form. |
|
251 |
* Accepts 'html5', 'xhtml'. |
|
252 |
*/ |
|
0 | 253 |
$format = apply_filters( 'search_form_format', $format ); |
254 |
||
255 |
$search_form_template = locate_template( 'searchform.php' ); |
|
256 |
if ( '' != $search_form_template ) { |
|
257 |
ob_start(); |
|
258 |
require( $search_form_template ); |
|
259 |
$form = ob_get_clean(); |
|
260 |
} else { |
|
9 | 261 |
// Build a string containing an aria-label to use for the search form. |
262 |
if ( isset( $args['aria_label'] ) && $args['aria_label'] ) { |
|
263 |
$aria_label = 'aria-label="' . esc_attr( $args['aria_label'] ) . '" '; |
|
264 |
} else { |
|
265 |
/* |
|
266 |
* If there's no custom aria-label, we can set a default here. At the |
|
267 |
* moment it's empty as there's uncertainty about what the default should be. |
|
268 |
*/ |
|
269 |
$aria_label = ''; |
|
270 |
} |
|
0 | 271 |
if ( 'html5' == $format ) { |
9 | 272 |
$form = '<form role="search" ' . $aria_label . 'method="get" class="search-form" action="' . esc_url( home_url( '/' ) ) . '"> |
0 | 273 |
<label> |
274 |
<span class="screen-reader-text">' . _x( 'Search for:', 'label' ) . '</span> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
275 |
<input type="search" class="search-field" placeholder="' . esc_attr_x( 'Search …', 'placeholder' ) . '" value="' . get_search_query() . '" name="s" /> |
0 | 276 |
</label> |
9 | 277 |
<input type="submit" class="search-submit" value="' . esc_attr_x( 'Search', 'submit button' ) . '" /> |
0 | 278 |
</form>'; |
279 |
} else { |
|
9 | 280 |
$form = '<form role="search" ' . $aria_label . 'method="get" id="searchform" class="searchform" action="' . esc_url( home_url( '/' ) ) . '"> |
0 | 281 |
<div> |
282 |
<label class="screen-reader-text" for="s">' . _x( 'Search for:', 'label' ) . '</label> |
|
283 |
<input type="text" value="' . get_search_query() . '" name="s" id="s" /> |
|
9 | 284 |
<input type="submit" id="searchsubmit" value="' . esc_attr_x( 'Search', 'submit button' ) . '" /> |
0 | 285 |
</div> |
286 |
</form>'; |
|
287 |
} |
|
288 |
} |
|
289 |
||
5 | 290 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
291 |
* Filters the HTML output of the search form. |
5 | 292 |
* |
293 |
* @since 2.7.0 |
|
294 |
* |
|
295 |
* @param string $form The search form HTML output. |
|
296 |
*/ |
|
0 | 297 |
$result = apply_filters( 'get_search_form', $form ); |
5 | 298 |
|
9 | 299 |
if ( null === $result ) { |
0 | 300 |
$result = $form; |
9 | 301 |
} |
302 |
||
303 |
if ( isset( $args['echo'] ) && $args['echo'] ) { |
|
0 | 304 |
echo $result; |
9 | 305 |
} else { |
0 | 306 |
return $result; |
9 | 307 |
} |
0 | 308 |
} |
309 |
||
310 |
/** |
|
311 |
* Display the Log In/Out link. |
|
312 |
* |
|
313 |
* Displays a link, which allows users to navigate to the Log In page to log in |
|
314 |
* or log out depending on whether they are currently logged in. |
|
315 |
* |
|
316 |
* @since 1.5.0 |
|
317 |
* |
|
318 |
* @param string $redirect Optional path to redirect to on login/logout. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
319 |
* @param bool $echo Default to echo and not return the link. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
320 |
* @return string|void String when retrieving. |
0 | 321 |
*/ |
9 | 322 |
function wp_loginout( $redirect = '', $echo = true ) { |
323 |
if ( ! is_user_logged_in() ) { |
|
324 |
$link = '<a href="' . esc_url( wp_login_url( $redirect ) ) . '">' . __( 'Log in' ) . '</a>'; |
|
325 |
} else { |
|
326 |
$link = '<a href="' . esc_url( wp_logout_url( $redirect ) ) . '">' . __( 'Log out' ) . '</a>'; |
|
327 |
} |
|
0 | 328 |
|
5 | 329 |
if ( $echo ) { |
330 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
331 |
* Filters the HTML output for the Log In/Log Out link. |
5 | 332 |
* |
333 |
* @since 1.5.0 |
|
334 |
* |
|
335 |
* @param string $link The HTML link content. |
|
336 |
*/ |
|
337 |
echo apply_filters( 'loginout', $link ); |
|
338 |
} else { |
|
339 |
/** This filter is documented in wp-includes/general-template.php */ |
|
340 |
return apply_filters( 'loginout', $link ); |
|
341 |
} |
|
0 | 342 |
} |
343 |
||
344 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
345 |
* Retrieves the logout URL. |
0 | 346 |
* |
347 |
* Returns the URL that allows the user to log out of the site. |
|
348 |
* |
|
349 |
* @since 2.7.0 |
|
350 |
* |
|
351 |
* @param string $redirect Path to redirect to on logout. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
352 |
* @return string The logout URL. Note: HTML-encoded via esc_html() in wp_nonce_url(). |
0 | 353 |
*/ |
9 | 354 |
function wp_logout_url( $redirect = '' ) { |
0 | 355 |
$args = array( 'action' => 'logout' ); |
9 | 356 |
if ( ! empty( $redirect ) ) { |
0 | 357 |
$args['redirect_to'] = urlencode( $redirect ); |
358 |
} |
|
359 |
||
9 | 360 |
$logout_url = add_query_arg( $args, site_url( 'wp-login.php', 'login' ) ); |
0 | 361 |
$logout_url = wp_nonce_url( $logout_url, 'log-out' ); |
362 |
||
5 | 363 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
364 |
* Filters the logout URL. |
5 | 365 |
* |
366 |
* @since 2.8.0 |
|
367 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
368 |
* @param string $logout_url The HTML-encoded logout URL. |
5 | 369 |
* @param string $redirect Path to redirect to on logout. |
370 |
*/ |
|
371 |
return apply_filters( 'logout_url', $logout_url, $redirect ); |
|
0 | 372 |
} |
373 |
||
374 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
375 |
* Retrieves the login URL. |
0 | 376 |
* |
377 |
* @since 2.7.0 |
|
378 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
379 |
* @param string $redirect Path to redirect to on log in. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
380 |
* @param bool $force_reauth Whether to force reauthorization, even if a cookie is present. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
381 |
* Default false. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
382 |
* @return string The login URL. Not HTML-encoded. |
0 | 383 |
*/ |
9 | 384 |
function wp_login_url( $redirect = '', $force_reauth = false ) { |
385 |
$login_url = site_url( 'wp-login.php', 'login' ); |
|
386 |
||
387 |
if ( ! empty( $redirect ) ) { |
|
388 |
$login_url = add_query_arg( 'redirect_to', urlencode( $redirect ), $login_url ); |
|
389 |
} |
|
390 |
||
391 |
if ( $force_reauth ) { |
|
392 |
$login_url = add_query_arg( 'reauth', '1', $login_url ); |
|
393 |
} |
|
0 | 394 |
|
5 | 395 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
396 |
* Filters the login URL. |
5 | 397 |
* |
398 |
* @since 2.8.0 |
|
399 |
* @since 4.2.0 The `$force_reauth` parameter was added. |
|
400 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
401 |
* @param string $login_url The login URL. Not HTML-encoded. |
5 | 402 |
* @param string $redirect The path to redirect to on login, if supplied. |
403 |
* @param bool $force_reauth Whether to force reauthorization, even if a cookie is present. |
|
404 |
*/ |
|
405 |
return apply_filters( 'login_url', $login_url, $redirect, $force_reauth ); |
|
0 | 406 |
} |
407 |
||
408 |
/** |
|
409 |
* Returns the URL that allows the user to register on the site. |
|
410 |
* |
|
411 |
* @since 3.6.0 |
|
412 |
* |
|
5 | 413 |
* @return string User registration URL. |
0 | 414 |
*/ |
415 |
function wp_registration_url() { |
|
5 | 416 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
417 |
* Filters the user registration URL. |
5 | 418 |
* |
419 |
* @since 3.6.0 |
|
420 |
* |
|
421 |
* @param string $register The user registration URL. |
|
422 |
*/ |
|
0 | 423 |
return apply_filters( 'register_url', site_url( 'wp-login.php?action=register', 'login' ) ); |
424 |
} |
|
425 |
||
426 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
427 |
* Provides a simple login form for use anywhere within WordPress. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
428 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
429 |
* The login format HTML is echoed by default. Pass a false value for `$echo` to return it instead. |
0 | 430 |
* |
431 |
* @since 3.0.0 |
|
5 | 432 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
433 |
* @param array $args { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
434 |
* Optional. Array of options to control the form output. Default empty array. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
435 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
436 |
* @type bool $echo Whether to display the login form or return the form HTML code. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
437 |
* Default true (echo). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
438 |
* @type string $redirect URL to redirect to. Must be absolute, as in "https://example.com/mypage/". |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
439 |
* Default is to redirect back to the request URI. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
440 |
* @type string $form_id ID attribute value for the form. Default 'loginform'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
441 |
* @type string $label_username Label for the username or email address field. Default 'Username or Email Address'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
442 |
* @type string $label_password Label for the password field. Default 'Password'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
443 |
* @type string $label_remember Label for the remember field. Default 'Remember Me'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
444 |
* @type string $label_log_in Label for the submit button. Default 'Log In'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
445 |
* @type string $id_username ID attribute value for the username field. Default 'user_login'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
446 |
* @type string $id_password ID attribute value for the password field. Default 'user_pass'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
447 |
* @type string $id_remember ID attribute value for the remember field. Default 'rememberme'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
448 |
* @type string $id_submit ID attribute value for the submit button. Default 'wp-submit'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
449 |
* @type bool $remember Whether to display the "rememberme" checkbox in the form. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
450 |
* @type string $value_username Default value for the username field. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
451 |
* @type bool $value_remember Whether the "Remember Me" checkbox should be checked by default. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
452 |
* Default false (unchecked). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
453 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
454 |
* } |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
455 |
* @return string|void String when retrieving. |
0 | 456 |
*/ |
457 |
function wp_login_form( $args = array() ) { |
|
458 |
$defaults = array( |
|
9 | 459 |
'echo' => true, |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
460 |
// Default 'redirect' value takes the user back to the request URI. |
9 | 461 |
'redirect' => ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], |
462 |
'form_id' => 'loginform', |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
463 |
'label_username' => __( 'Username or Email Address' ), |
0 | 464 |
'label_password' => __( 'Password' ), |
465 |
'label_remember' => __( 'Remember Me' ), |
|
9 | 466 |
'label_log_in' => __( 'Log In' ), |
467 |
'id_username' => 'user_login', |
|
468 |
'id_password' => 'user_pass', |
|
469 |
'id_remember' => 'rememberme', |
|
470 |
'id_submit' => 'wp-submit', |
|
471 |
'remember' => true, |
|
0 | 472 |
'value_username' => '', |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
473 |
// Set 'value_remember' to true to default the "Remember me" checkbox to checked. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
474 |
'value_remember' => false, |
0 | 475 |
); |
5 | 476 |
|
477 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
478 |
* Filters the default login form output arguments. |
5 | 479 |
* |
480 |
* @since 3.0.0 |
|
481 |
* |
|
482 |
* @see wp_login_form() |
|
483 |
* |
|
484 |
* @param array $defaults An array of default login form arguments. |
|
485 |
*/ |
|
0 | 486 |
$args = wp_parse_args( $args, apply_filters( 'login_form_defaults', $defaults ) ); |
487 |
||
5 | 488 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
489 |
* Filters content to display at the top of the login form. |
5 | 490 |
* |
491 |
* The filter evaluates just following the opening form tag element. |
|
492 |
* |
|
493 |
* @since 3.0.0 |
|
494 |
* |
|
495 |
* @param string $content Content to display. Default empty. |
|
496 |
* @param array $args Array of login form arguments. |
|
497 |
*/ |
|
498 |
$login_form_top = apply_filters( 'login_form_top', '', $args ); |
|
499 |
||
500 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
501 |
* Filters content to display in the middle of the login form. |
5 | 502 |
* |
503 |
* The filter evaluates just following the location where the 'login-password' |
|
504 |
* field is displayed. |
|
505 |
* |
|
506 |
* @since 3.0.0 |
|
507 |
* |
|
508 |
* @param string $content Content to display. Default empty. |
|
509 |
* @param array $args Array of login form arguments. |
|
510 |
*/ |
|
511 |
$login_form_middle = apply_filters( 'login_form_middle', '', $args ); |
|
512 |
||
513 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
514 |
* Filters content to display at the bottom of the login form. |
5 | 515 |
* |
516 |
* The filter evaluates just preceding the closing form tag element. |
|
517 |
* |
|
518 |
* @since 3.0.0 |
|
519 |
* |
|
520 |
* @param string $content Content to display. Default empty. |
|
521 |
* @param array $args Array of login form arguments. |
|
522 |
*/ |
|
523 |
$login_form_bottom = apply_filters( 'login_form_bottom', '', $args ); |
|
524 |
||
0 | 525 |
$form = ' |
526 |
<form name="' . $args['form_id'] . '" id="' . $args['form_id'] . '" action="' . esc_url( site_url( 'wp-login.php', 'login_post' ) ) . '" method="post"> |
|
5 | 527 |
' . $login_form_top . ' |
0 | 528 |
<p class="login-username"> |
529 |
<label for="' . esc_attr( $args['id_username'] ) . '">' . esc_html( $args['label_username'] ) . '</label> |
|
530 |
<input type="text" name="log" id="' . esc_attr( $args['id_username'] ) . '" class="input" value="' . esc_attr( $args['value_username'] ) . '" size="20" /> |
|
531 |
</p> |
|
532 |
<p class="login-password"> |
|
533 |
<label for="' . esc_attr( $args['id_password'] ) . '">' . esc_html( $args['label_password'] ) . '</label> |
|
534 |
<input type="password" name="pwd" id="' . esc_attr( $args['id_password'] ) . '" class="input" value="" size="20" /> |
|
535 |
</p> |
|
5 | 536 |
' . $login_form_middle . ' |
0 | 537 |
' . ( $args['remember'] ? '<p class="login-remember"><label><input name="rememberme" type="checkbox" id="' . esc_attr( $args['id_remember'] ) . '" value="forever"' . ( $args['value_remember'] ? ' checked="checked"' : '' ) . ' /> ' . esc_html( $args['label_remember'] ) . '</label></p>' : '' ) . ' |
538 |
<p class="login-submit"> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
539 |
<input type="submit" name="wp-submit" id="' . esc_attr( $args['id_submit'] ) . '" class="button button-primary" value="' . esc_attr( $args['label_log_in'] ) . '" /> |
0 | 540 |
<input type="hidden" name="redirect_to" value="' . esc_url( $args['redirect'] ) . '" /> |
541 |
</p> |
|
5 | 542 |
' . $login_form_bottom . ' |
0 | 543 |
</form>'; |
544 |
||
9 | 545 |
if ( $args['echo'] ) { |
0 | 546 |
echo $form; |
9 | 547 |
} else { |
0 | 548 |
return $form; |
9 | 549 |
} |
0 | 550 |
} |
551 |
||
552 |
/** |
|
553 |
* Returns the URL that allows the user to retrieve the lost password |
|
554 |
* |
|
555 |
* @since 2.8.0 |
|
556 |
* |
|
557 |
* @param string $redirect Path to redirect to on login. |
|
558 |
* @return string Lost password URL. |
|
559 |
*/ |
|
560 |
function wp_lostpassword_url( $redirect = '' ) { |
|
561 |
$args = array( 'action' => 'lostpassword' ); |
|
9 | 562 |
if ( ! empty( $redirect ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
563 |
$args['redirect_to'] = urlencode( $redirect ); |
0 | 564 |
} |
565 |
||
9 | 566 |
$lostpassword_url = add_query_arg( $args, network_site_url( 'wp-login.php', 'login' ) ); |
5 | 567 |
|
568 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
569 |
* Filters the Lost Password URL. |
5 | 570 |
* |
571 |
* @since 2.8.0 |
|
572 |
* |
|
573 |
* @param string $lostpassword_url The lost password page URL. |
|
574 |
* @param string $redirect The path to redirect to on login. |
|
575 |
*/ |
|
0 | 576 |
return apply_filters( 'lostpassword_url', $lostpassword_url, $redirect ); |
577 |
} |
|
578 |
||
579 |
/** |
|
580 |
* Display the Registration or Admin link. |
|
581 |
* |
|
582 |
* Display a link which allows the user to navigate to the registration page if |
|
583 |
* not logged in and registration is enabled or to the dashboard if logged in. |
|
584 |
* |
|
585 |
* @since 1.5.0 |
|
586 |
* |
|
5 | 587 |
* @param string $before Text to output before the link. Default `<li>`. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
588 |
* @param string $after Text to output after the link. Default `</li>`. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
589 |
* @param bool $echo Default to echo and not return the link. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
590 |
* @return string|void String when retrieving. |
0 | 591 |
*/ |
592 |
function wp_register( $before = '<li>', $after = '</li>', $echo = true ) { |
|
593 |
if ( ! is_user_logged_in() ) { |
|
9 | 594 |
if ( get_option( 'users_can_register' ) ) { |
595 |
$link = $before . '<a href="' . esc_url( wp_registration_url() ) . '">' . __( 'Register' ) . '</a>' . $after; |
|
596 |
} else { |
|
0 | 597 |
$link = ''; |
9 | 598 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
599 |
} elseif ( current_user_can( 'read' ) ) { |
9 | 600 |
$link = $before . '<a href="' . admin_url() . '">' . __( 'Site Admin' ) . '</a>' . $after; |
0 | 601 |
} else { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
602 |
$link = ''; |
0 | 603 |
} |
604 |
||
5 | 605 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
606 |
* Filters the HTML link to the Registration or Admin page. |
5 | 607 |
* |
608 |
* Users are sent to the admin page if logged-in, or the registration page |
|
609 |
* if enabled and logged-out. |
|
610 |
* |
|
611 |
* @since 1.5.0 |
|
612 |
* |
|
613 |
* @param string $link The HTML code for the link to the Registration or Admin page. |
|
614 |
*/ |
|
615 |
$link = apply_filters( 'register', $link ); |
|
616 |
||
617 |
if ( $echo ) { |
|
618 |
echo $link; |
|
619 |
} else { |
|
620 |
return $link; |
|
621 |
} |
|
0 | 622 |
} |
623 |
||
624 |
/** |
|
625 |
* Theme container function for the 'wp_meta' action. |
|
626 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
627 |
* The {@see 'wp_meta'} action can have several purposes, depending on how you use it, |
0 | 628 |
* but one purpose might have been to allow for theme switching. |
629 |
* |
|
630 |
* @since 1.5.0 |
|
5 | 631 |
* |
632 |
* @link https://core.trac.wordpress.org/ticket/1458 Explanation of 'wp_meta' action. |
|
0 | 633 |
*/ |
634 |
function wp_meta() { |
|
5 | 635 |
/** |
636 |
* Fires before displaying echoed content in the sidebar. |
|
637 |
* |
|
638 |
* @since 1.5.0 |
|
639 |
*/ |
|
640 |
do_action( 'wp_meta' ); |
|
0 | 641 |
} |
642 |
||
643 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
644 |
* Displays information about the current site. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
645 |
* |
0 | 646 |
* @since 0.71 |
647 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
648 |
* @see get_bloginfo() For possible `$show` values |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
649 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
650 |
* @param string $show Optional. Site information to display. Default empty. |
0 | 651 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
652 |
function bloginfo( $show = '' ) { |
0 | 653 |
echo get_bloginfo( $show, 'display' ); |
654 |
} |
|
655 |
||
656 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
657 |
* Retrieves information about the current site. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
658 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
659 |
* Possible values for `$show` include: |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
660 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
661 |
* - 'name' - Site title (set in Settings > General) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
662 |
* - 'description' - Site tagline (set in Settings > General) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
663 |
* - 'wpurl' - The WordPress address (URL) (set in Settings > General) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
664 |
* - 'url' - The Site address (URL) (set in Settings > General) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
665 |
* - 'admin_email' - Admin email (set in Settings > General) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
666 |
* - 'charset' - The "Encoding for pages and feeds" (set in Settings > Reading) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
667 |
* - 'version' - The current WordPress version |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
668 |
* - 'html_type' - The content-type (default: "text/html"). Themes and plugins |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
669 |
* can override the default value using the {@see 'pre_option_html_type'} filter |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
670 |
* - 'text_direction' - The text direction determined by the site's language. is_rtl() |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
671 |
* should be used instead |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
672 |
* - 'language' - Language code for the current site |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
673 |
* - 'stylesheet_url' - URL to the stylesheet for the active theme. An active child theme |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
674 |
* will take precedence over this value |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
675 |
* - 'stylesheet_directory' - Directory path for the active theme. An active child theme |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
676 |
* will take precedence over this value |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
677 |
* - 'template_url' / 'template_directory' - URL of the active theme's directory. An active |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
678 |
* child theme will NOT take precedence over this value |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
679 |
* - 'pingback_url' - The pingback XML-RPC file URL (xmlrpc.php) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
680 |
* - 'atom_url' - The Atom feed URL (/feed/atom) |
9 | 681 |
* - 'rdf_url' - The RDF/RSS 1.0 feed URL (/feed/rdf) |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
682 |
* - 'rss_url' - The RSS 0.92 feed URL (/feed/rss) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
683 |
* - 'rss2_url' - The RSS 2.0 feed URL (/feed) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
684 |
* - 'comments_atom_url' - The comments Atom feed URL (/comments/feed) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
685 |
* - 'comments_rss2_url' - The comments RSS 2.0 feed URL (/comments/feed) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
686 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
687 |
* Some `$show` values are deprecated and will be removed in future versions. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
688 |
* These options will trigger the _deprecated_argument() function. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
689 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
690 |
* Deprecated arguments include: |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
691 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
692 |
* - 'siteurl' - Use 'url' instead |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
693 |
* - 'home' - Use 'url' instead |
0 | 694 |
* |
695 |
* @since 0.71 |
|
696 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
697 |
* @global string $wp_version |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
698 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
699 |
* @param string $show Optional. Site info to retrieve. Default empty (site name). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
700 |
* @param string $filter Optional. How to filter what is retrieved. Default 'raw'. |
0 | 701 |
* @return string Mostly string values, might be empty. |
702 |
*/ |
|
703 |
function get_bloginfo( $show = '', $filter = 'raw' ) { |
|
9 | 704 |
switch ( $show ) { |
705 |
case 'home': // DEPRECATED |
|
706 |
case 'siteurl': // DEPRECATED |
|
707 |
_deprecated_argument( |
|
708 |
__FUNCTION__, |
|
709 |
'2.2.0', |
|
710 |
sprintf( |
|
711 |
/* translators: 1: 'siteurl'/'home' argument, 2: bloginfo() function name, 3: 'url' argument */ |
|
712 |
__( 'The %1$s option is deprecated for the family of %2$s functions. Use the %3$s option instead.' ), |
|
713 |
'<code>' . $show . '</code>', |
|
714 |
'<code>bloginfo()</code>', |
|
715 |
'<code>url</code>' |
|
716 |
) |
|
717 |
); |
|
718 |
// Intentional fall-through to be handled by the 'url' case. |
|
719 |
case 'url': |
|
0 | 720 |
$output = home_url(); |
721 |
break; |
|
9 | 722 |
case 'wpurl': |
0 | 723 |
$output = site_url(); |
724 |
break; |
|
725 |
case 'description': |
|
9 | 726 |
$output = get_option( 'blogdescription' ); |
0 | 727 |
break; |
728 |
case 'rdf_url': |
|
9 | 729 |
$output = get_feed_link( 'rdf' ); |
0 | 730 |
break; |
731 |
case 'rss_url': |
|
9 | 732 |
$output = get_feed_link( 'rss' ); |
0 | 733 |
break; |
734 |
case 'rss2_url': |
|
9 | 735 |
$output = get_feed_link( 'rss2' ); |
0 | 736 |
break; |
737 |
case 'atom_url': |
|
9 | 738 |
$output = get_feed_link( 'atom' ); |
0 | 739 |
break; |
740 |
case 'comments_atom_url': |
|
9 | 741 |
$output = get_feed_link( 'comments_atom' ); |
0 | 742 |
break; |
743 |
case 'comments_rss2_url': |
|
9 | 744 |
$output = get_feed_link( 'comments_rss2' ); |
0 | 745 |
break; |
746 |
case 'pingback_url': |
|
747 |
$output = site_url( 'xmlrpc.php' ); |
|
748 |
break; |
|
749 |
case 'stylesheet_url': |
|
750 |
$output = get_stylesheet_uri(); |
|
751 |
break; |
|
752 |
case 'stylesheet_directory': |
|
753 |
$output = get_stylesheet_directory_uri(); |
|
754 |
break; |
|
755 |
case 'template_directory': |
|
756 |
case 'template_url': |
|
757 |
$output = get_template_directory_uri(); |
|
758 |
break; |
|
759 |
case 'admin_email': |
|
9 | 760 |
$output = get_option( 'admin_email' ); |
0 | 761 |
break; |
762 |
case 'charset': |
|
9 | 763 |
$output = get_option( 'blog_charset' ); |
764 |
if ( '' == $output ) { |
|
765 |
$output = 'UTF-8'; |
|
766 |
} |
|
0 | 767 |
break; |
9 | 768 |
case 'html_type': |
769 |
$output = get_option( 'html_type' ); |
|
0 | 770 |
break; |
771 |
case 'version': |
|
772 |
global $wp_version; |
|
773 |
$output = $wp_version; |
|
774 |
break; |
|
775 |
case 'language': |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
776 |
/* translators: Translate this to the correct language tag for your locale, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
777 |
* see https://www.w3.org/International/articles/language-tags/ for reference. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
778 |
* Do not translate into your own language. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
779 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
780 |
$output = __( 'html_lang_attribute' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
781 |
if ( 'html_lang_attribute' === $output || preg_match( '/[^a-zA-Z0-9-]/', $output ) ) { |
9 | 782 |
$output = determine_locale(); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
783 |
$output = str_replace( '_', '-', $output ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
784 |
} |
0 | 785 |
break; |
786 |
case 'text_direction': |
|
9 | 787 |
_deprecated_argument( |
788 |
__FUNCTION__, |
|
789 |
'2.2.0', |
|
790 |
sprintf( |
|
791 |
/* translators: 1: 'text_direction' argument, 2: bloginfo() function name, 3: is_rtl() function name */ |
|
792 |
__( 'The %1$s option is deprecated for the family of %2$s functions. Use the %3$s function instead.' ), |
|
793 |
'<code>' . $show . '</code>', |
|
794 |
'<code>bloginfo()</code>', |
|
795 |
'<code>is_rtl()</code>' |
|
796 |
) |
|
797 |
); |
|
0 | 798 |
if ( function_exists( 'is_rtl' ) ) { |
799 |
$output = is_rtl() ? 'rtl' : 'ltr'; |
|
800 |
} else { |
|
801 |
$output = 'ltr'; |
|
802 |
} |
|
803 |
break; |
|
804 |
case 'name': |
|
805 |
default: |
|
9 | 806 |
$output = get_option( 'blogname' ); |
0 | 807 |
break; |
808 |
} |
|
809 |
||
810 |
$url = true; |
|
9 | 811 |
if ( strpos( $show, 'url' ) === false && |
812 |
strpos( $show, 'directory' ) === false && |
|
813 |
strpos( $show, 'home' ) === false ) { |
|
0 | 814 |
$url = false; |
9 | 815 |
} |
0 | 816 |
|
817 |
if ( 'display' == $filter ) { |
|
5 | 818 |
if ( $url ) { |
819 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
820 |
* Filters the URL returned by get_bloginfo(). |
5 | 821 |
* |
822 |
* @since 2.0.5 |
|
823 |
* |
|
824 |
* @param mixed $output The URL returned by bloginfo(). |
|
825 |
* @param mixed $show Type of information requested. |
|
826 |
*/ |
|
827 |
$output = apply_filters( 'bloginfo_url', $output, $show ); |
|
828 |
} else { |
|
829 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
830 |
* Filters the site information returned by get_bloginfo(). |
5 | 831 |
* |
832 |
* @since 0.71 |
|
833 |
* |
|
834 |
* @param mixed $output The requested non-URL site information. |
|
835 |
* @param mixed $show Type of information requested. |
|
836 |
*/ |
|
837 |
$output = apply_filters( 'bloginfo', $output, $show ); |
|
838 |
} |
|
0 | 839 |
} |
840 |
||
841 |
return $output; |
|
842 |
} |
|
843 |
||
844 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
845 |
* Returns the Site Icon URL. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
846 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
847 |
* @since 4.3.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
848 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
849 |
* @param int $size Optional. Size of the site icon. Default 512 (pixels). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
850 |
* @param string $url Optional. Fallback url if no site icon is found. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
851 |
* @param int $blog_id Optional. ID of the blog to get the site icon for. Default current blog. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
852 |
* @return string Site Icon URL. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
853 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
854 |
function get_site_icon_url( $size = 512, $url = '', $blog_id = 0 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
855 |
$switched_blog = false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
856 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
857 |
if ( is_multisite() && ! empty( $blog_id ) && (int) $blog_id !== get_current_blog_id() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
858 |
switch_to_blog( $blog_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
859 |
$switched_blog = true; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
860 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
861 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
862 |
$site_icon_id = get_option( 'site_icon' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
863 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
864 |
if ( $site_icon_id ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
865 |
if ( $size >= 512 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
866 |
$size_data = 'full'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
867 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
868 |
$size_data = array( $size, $size ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
869 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
870 |
$url = wp_get_attachment_image_url( $site_icon_id, $size_data ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
871 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
872 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
873 |
if ( $switched_blog ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
874 |
restore_current_blog(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
875 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
876 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
877 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
878 |
* Filters the site icon URL. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
879 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
880 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
881 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
882 |
* @param string $url Site icon URL. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
883 |
* @param int $size Size of the site icon. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
884 |
* @param int $blog_id ID of the blog to get the site icon for. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
885 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
886 |
return apply_filters( 'get_site_icon_url', $url, $size, $blog_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
887 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
888 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
889 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
890 |
* Displays the Site Icon URL. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
891 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
892 |
* @since 4.3.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
893 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
894 |
* @param int $size Optional. Size of the site icon. Default 512 (pixels). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
895 |
* @param string $url Optional. Fallback url if no site icon is found. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
896 |
* @param int $blog_id Optional. ID of the blog to get the site icon for. Default current blog. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
897 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
898 |
function site_icon_url( $size = 512, $url = '', $blog_id = 0 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
899 |
echo esc_url( get_site_icon_url( $size, $url, $blog_id ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
900 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
901 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
902 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
903 |
* Whether the site has a Site Icon. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
904 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
905 |
* @since 4.3.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
906 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
907 |
* @param int $blog_id Optional. ID of the blog in question. Default current blog. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
908 |
* @return bool Whether the site has a site icon or not. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
909 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
910 |
function has_site_icon( $blog_id = 0 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
911 |
return (bool) get_site_icon_url( 512, '', $blog_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
912 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
913 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
914 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
915 |
* Determines whether the site has a custom logo. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
916 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
917 |
* @since 4.5.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
918 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
919 |
* @param int $blog_id Optional. ID of the blog in question. Default is the ID of the current blog. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
920 |
* @return bool Whether the site has a custom logo or not. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
921 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
922 |
function has_custom_logo( $blog_id = 0 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
923 |
$switched_blog = false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
924 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
925 |
if ( is_multisite() && ! empty( $blog_id ) && (int) $blog_id !== get_current_blog_id() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
926 |
switch_to_blog( $blog_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
927 |
$switched_blog = true; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
928 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
929 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
930 |
$custom_logo_id = get_theme_mod( 'custom_logo' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
931 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
932 |
if ( $switched_blog ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
933 |
restore_current_blog(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
934 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
935 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
936 |
return (bool) $custom_logo_id; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
937 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
938 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
939 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
940 |
* Returns a custom logo, linked to home. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
941 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
942 |
* @since 4.5.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
943 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
944 |
* @param int $blog_id Optional. ID of the blog in question. Default is the ID of the current blog. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
945 |
* @return string Custom logo markup. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
946 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
947 |
function get_custom_logo( $blog_id = 0 ) { |
9 | 948 |
$html = ''; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
949 |
$switched_blog = false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
950 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
951 |
if ( is_multisite() && ! empty( $blog_id ) && (int) $blog_id !== get_current_blog_id() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
952 |
switch_to_blog( $blog_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
953 |
$switched_blog = true; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
954 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
955 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
956 |
$custom_logo_id = get_theme_mod( 'custom_logo' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
957 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
958 |
// We have a logo. Logo is go. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
959 |
if ( $custom_logo_id ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
960 |
$custom_logo_attr = array( |
9 | 961 |
'class' => 'custom-logo', |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
962 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
963 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
964 |
/* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
965 |
* If the logo alt attribute is empty, get the site title and explicitly |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
966 |
* pass it to the attributes used by wp_get_attachment_image(). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
967 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
968 |
$image_alt = get_post_meta( $custom_logo_id, '_wp_attachment_image_alt', true ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
969 |
if ( empty( $image_alt ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
970 |
$custom_logo_attr['alt'] = get_bloginfo( 'name', 'display' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
971 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
972 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
973 |
/* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
974 |
* If the alt attribute is not empty, there's no need to explicitly pass |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
975 |
* it because wp_get_attachment_image() already adds the alt attribute. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
976 |
*/ |
9 | 977 |
$html = sprintf( |
978 |
'<a href="%1$s" class="custom-logo-link" rel="home">%2$s</a>', |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
979 |
esc_url( home_url( '/' ) ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
980 |
wp_get_attachment_image( $custom_logo_id, 'full', false, $custom_logo_attr ) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
981 |
); |
9 | 982 |
} elseif ( is_customize_preview() ) { |
983 |
// If no logo is set but we're in the Customizer, leave a placeholder (needed for the live preview). |
|
984 |
$html = sprintf( |
|
985 |
'<a href="%1$s" class="custom-logo-link" style="display:none;"><img class="custom-logo"/></a>', |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
986 |
esc_url( home_url( '/' ) ) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
987 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
988 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
989 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
990 |
if ( $switched_blog ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
991 |
restore_current_blog(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
992 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
993 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
994 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
995 |
* Filters the custom logo output. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
996 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
997 |
* @since 4.5.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
998 |
* @since 4.6.0 Added the `$blog_id` parameter. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
999 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1000 |
* @param string $html Custom logo HTML output. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1001 |
* @param int $blog_id ID of the blog to get the custom logo for. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1002 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1003 |
return apply_filters( 'get_custom_logo', $html, $blog_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1004 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1005 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1006 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1007 |
* Displays a custom logo, linked to home. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1008 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1009 |
* @since 4.5.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1010 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1011 |
* @param int $blog_id Optional. ID of the blog in question. Default is the ID of the current blog. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1012 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1013 |
function the_custom_logo( $blog_id = 0 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1014 |
echo get_custom_logo( $blog_id ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1015 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1016 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1017 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1018 |
* Returns document title for the current page. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1019 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1020 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1021 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1022 |
* @global int $page Page number of a single post. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1023 |
* @global int $paged Page number of a list of posts. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1024 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1025 |
* @return string Tag with the document title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1026 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1027 |
function wp_get_document_title() { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1028 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1029 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1030 |
* Filters the document title before it is generated. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1031 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1032 |
* Passing a non-empty value will short-circuit wp_get_document_title(), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1033 |
* returning that value instead. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1034 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1035 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1036 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1037 |
* @param string $title The document title. Default empty string. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1038 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1039 |
$title = apply_filters( 'pre_get_document_title', '' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1040 |
if ( ! empty( $title ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1041 |
return $title; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1042 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1043 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1044 |
global $page, $paged; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1045 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1046 |
$title = array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1047 |
'title' => '', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1048 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1049 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1050 |
// If it's a 404 page, use a "Page not found" title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1051 |
if ( is_404() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1052 |
$title['title'] = __( 'Page not found' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1053 |
|
9 | 1054 |
// If it's a search, use a dynamic search results title. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1055 |
} elseif ( is_search() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1056 |
/* translators: %s: search phrase */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1057 |
$title['title'] = sprintf( __( 'Search Results for “%s”' ), get_search_query() ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1058 |
|
9 | 1059 |
// If on the front page, use the site title. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1060 |
} elseif ( is_front_page() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1061 |
$title['title'] = get_bloginfo( 'name', 'display' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1062 |
|
9 | 1063 |
// If on a post type archive, use the post type archive title. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1064 |
} elseif ( is_post_type_archive() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1065 |
$title['title'] = post_type_archive_title( '', false ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1066 |
|
9 | 1067 |
// If on a taxonomy archive, use the term title. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1068 |
} elseif ( is_tax() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1069 |
$title['title'] = single_term_title( '', false ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1070 |
|
9 | 1071 |
/* |
1072 |
* If we're on the blog page that is not the homepage or |
|
1073 |
* a single post of any post type, use the post title. |
|
1074 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1075 |
} elseif ( is_home() || is_singular() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1076 |
$title['title'] = single_post_title( '', false ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1077 |
|
9 | 1078 |
// If on a category or tag archive, use the term title. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1079 |
} elseif ( is_category() || is_tag() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1080 |
$title['title'] = single_term_title( '', false ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1081 |
|
9 | 1082 |
// If on an author archive, use the author's display name. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1083 |
} elseif ( is_author() && $author = get_queried_object() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1084 |
$title['title'] = $author->display_name; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1085 |
|
9 | 1086 |
// If it's a date archive, use the date as the title. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1087 |
} elseif ( is_year() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1088 |
$title['title'] = get_the_date( _x( 'Y', 'yearly archives date format' ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1089 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1090 |
} elseif ( is_month() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1091 |
$title['title'] = get_the_date( _x( 'F Y', 'monthly archives date format' ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1092 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1093 |
} elseif ( is_day() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1094 |
$title['title'] = get_the_date(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1095 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1096 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1097 |
// Add a page number if necessary. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1098 |
if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1099 |
$title['page'] = sprintf( __( 'Page %s' ), max( $paged, $page ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1100 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1101 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1102 |
// Append the description or site title to give context. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1103 |
if ( is_front_page() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1104 |
$title['tagline'] = get_bloginfo( 'description', 'display' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1105 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1106 |
$title['site'] = get_bloginfo( 'name', 'display' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1107 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1108 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1109 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1110 |
* Filters the separator for the document title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1111 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1112 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1113 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1114 |
* @param string $sep Document title separator. Default '-'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1115 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1116 |
$sep = apply_filters( 'document_title_separator', '-' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1117 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1118 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1119 |
* Filters the parts of the document title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1120 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1121 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1122 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1123 |
* @param array $title { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1124 |
* The document title parts. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1125 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1126 |
* @type string $title Title of the viewed page. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1127 |
* @type string $page Optional. Page number if paginated. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1128 |
* @type string $tagline Optional. Site description when on home page. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1129 |
* @type string $site Optional. Site title when not on home page. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1130 |
* } |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1131 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1132 |
$title = apply_filters( 'document_title_parts', $title ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1133 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1134 |
$title = implode( " $sep ", array_filter( $title ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1135 |
$title = wptexturize( $title ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1136 |
$title = convert_chars( $title ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1137 |
$title = esc_html( $title ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1138 |
$title = capital_P_dangit( $title ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1139 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1140 |
return $title; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1141 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1142 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1143 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1144 |
* Displays title tag with content. |
5 | 1145 |
* |
1146 |
* @ignore |
|
1147 |
* @since 4.1.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1148 |
* @since 4.4.0 Improved title output replaced `wp_title()`. |
5 | 1149 |
* @access private |
1150 |
*/ |
|
1151 |
function _wp_render_title_tag() { |
|
1152 |
if ( ! current_theme_supports( 'title-tag' ) ) { |
|
1153 |
return; |
|
1154 |
} |
|
1155 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1156 |
echo '<title>' . wp_get_document_title() . '</title>' . "\n"; |
5 | 1157 |
} |
1158 |
||
1159 |
/** |
|
0 | 1160 |
* Display or retrieve page title for all areas of blog. |
1161 |
* |
|
1162 |
* By default, the page title will display the separator before the page title, |
|
1163 |
* so that the blog title will be before the page title. This is not good for |
|
1164 |
* title display, since the blog title shows up on most tabs and not what is |
|
1165 |
* important, which is the page that the user is looking at. |
|
1166 |
* |
|
1167 |
* There are also SEO benefits to having the blog title after or to the 'right' |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1168 |
* of the page title. However, it is mostly common sense to have the blog title |
0 | 1169 |
* to the right with most browsers supporting tabs. You can achieve this by |
1170 |
* using the seplocation parameter and setting the value to 'right'. This change |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1171 |
* was introduced around 2.5.0, in case backward compatibility of themes is |
0 | 1172 |
* important. |
1173 |
* |
|
1174 |
* @since 1.0.0 |
|
1175 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1176 |
* @global WP_Locale $wp_locale |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1177 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1178 |
* @param string $sep Optional, default is '»'. How to separate the various items |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1179 |
* within the page title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1180 |
* @param bool $display Optional, default is true. Whether to display or retrieve title. |
0 | 1181 |
* @param string $seplocation Optional. Direction to display title, 'right'. |
1182 |
* @return string|null String on retrieve, null when displaying. |
|
1183 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1184 |
function wp_title( $sep = '»', $display = true, $seplocation = '' ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1185 |
global $wp_locale; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1186 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1187 |
$m = get_query_var( 'm' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1188 |
$year = get_query_var( 'year' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1189 |
$monthnum = get_query_var( 'monthnum' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1190 |
$day = get_query_var( 'day' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1191 |
$search = get_query_var( 's' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1192 |
$title = ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1193 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1194 |
$t_sep = '%WP_TITLE_SEP%'; // Temporary separator, for accurate flipping, if necessary |
0 | 1195 |
|
1196 |
// If there is a post |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1197 |
if ( is_single() || ( is_home() && ! is_front_page() ) || ( is_page() && ! is_front_page() ) ) { |
0 | 1198 |
$title = single_post_title( '', false ); |
1199 |
} |
|
1200 |
||
1201 |
// If there's a post type archive |
|
1202 |
if ( is_post_type_archive() ) { |
|
1203 |
$post_type = get_query_var( 'post_type' ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1204 |
if ( is_array( $post_type ) ) { |
0 | 1205 |
$post_type = reset( $post_type ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1206 |
} |
0 | 1207 |
$post_type_object = get_post_type_object( $post_type ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1208 |
if ( ! $post_type_object->has_archive ) { |
0 | 1209 |
$title = post_type_archive_title( '', false ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1210 |
} |
0 | 1211 |
} |
1212 |
||
1213 |
// If there's a category or tag |
|
1214 |
if ( is_category() || is_tag() ) { |
|
1215 |
$title = single_term_title( '', false ); |
|
1216 |
} |
|
1217 |
||
1218 |
// If there's a taxonomy |
|
1219 |
if ( is_tax() ) { |
|
1220 |
$term = get_queried_object(); |
|
1221 |
if ( $term ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1222 |
$tax = get_taxonomy( $term->taxonomy ); |
0 | 1223 |
$title = single_term_title( $tax->labels->name . $t_sep, false ); |
1224 |
} |
|
1225 |
} |
|
1226 |
||
1227 |
// If there's an author |
|
5 | 1228 |
if ( is_author() && ! is_post_type_archive() ) { |
0 | 1229 |
$author = get_queried_object(); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1230 |
if ( $author ) { |
0 | 1231 |
$title = $author->display_name; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1232 |
} |
0 | 1233 |
} |
1234 |
||
1235 |
// Post type archives with has_archive should override terms. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1236 |
if ( is_post_type_archive() && $post_type_object->has_archive ) { |
0 | 1237 |
$title = post_type_archive_title( '', false ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1238 |
} |
0 | 1239 |
|
1240 |
// If there's a month |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1241 |
if ( is_archive() && ! empty( $m ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1242 |
$my_year = substr( $m, 0, 4 ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1243 |
$my_month = $wp_locale->get_month( substr( $m, 4, 2 ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1244 |
$my_day = intval( substr( $m, 6, 2 ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1245 |
$title = $my_year . ( $my_month ? $t_sep . $my_month : '' ) . ( $my_day ? $t_sep . $my_day : '' ); |
0 | 1246 |
} |
1247 |
||
1248 |
// If there's a year |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1249 |
if ( is_archive() && ! empty( $year ) ) { |
0 | 1250 |
$title = $year; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1251 |
if ( ! empty( $monthnum ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1252 |
$title .= $t_sep . $wp_locale->get_month( $monthnum ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1253 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1254 |
if ( ! empty( $day ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1255 |
$title .= $t_sep . zeroise( $day, 2 ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1256 |
} |
0 | 1257 |
} |
1258 |
||
1259 |
// If it's a search |
|
1260 |
if ( is_search() ) { |
|
1261 |
/* translators: 1: separator, 2: search phrase */ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1262 |
$title = sprintf( __( 'Search Results %1$s %2$s' ), $t_sep, strip_tags( $search ) ); |
0 | 1263 |
} |
1264 |
||
1265 |
// If it's a 404 page |
|
1266 |
if ( is_404() ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1267 |
$title = __( 'Page not found' ); |
0 | 1268 |
} |
1269 |
||
1270 |
$prefix = ''; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1271 |
if ( ! empty( $title ) ) { |
0 | 1272 |
$prefix = " $sep "; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1273 |
} |
0 | 1274 |
|
5 | 1275 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1276 |
* Filters the parts of the page title. |
5 | 1277 |
* |
1278 |
* @since 4.0.0 |
|
1279 |
* |
|
1280 |
* @param array $title_array Parts of the page title. |
|
1281 |
*/ |
|
1282 |
$title_array = apply_filters( 'wp_title_parts', explode( $t_sep, $title ) ); |
|
1283 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1284 |
// Determines position of the separator and direction of the breadcrumb |
0 | 1285 |
if ( 'right' == $seplocation ) { // sep on right, so reverse the order |
1286 |
$title_array = array_reverse( $title_array ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1287 |
$title = implode( " $sep ", $title_array ) . $prefix; |
0 | 1288 |
} else { |
1289 |
$title = $prefix . implode( " $sep ", $title_array ); |
|
1290 |
} |
|
1291 |
||
5 | 1292 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1293 |
* Filters the text of the page title. |
5 | 1294 |
* |
1295 |
* @since 2.0.0 |
|
1296 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1297 |
* @param string $title Page title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1298 |
* @param string $sep Title separator. |
5 | 1299 |
* @param string $seplocation Location of the separator (left or right). |
1300 |
*/ |
|
1301 |
$title = apply_filters( 'wp_title', $title, $sep, $seplocation ); |
|
0 | 1302 |
|
1303 |
// Send it out |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1304 |
if ( $display ) { |
0 | 1305 |
echo $title; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1306 |
} else { |
0 | 1307 |
return $title; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1308 |
} |
0 | 1309 |
} |
1310 |
||
1311 |
/** |
|
1312 |
* Display or retrieve page title for post. |
|
1313 |
* |
|
1314 |
* This is optimized for single.php template file for displaying the post title. |
|
1315 |
* |
|
1316 |
* It does not support placing the separator after the title, but by leaving the |
|
1317 |
* prefix parameter empty, you can set the title separator manually. The prefix |
|
1318 |
* does not automatically place a space between the prefix, so if there should |
|
1319 |
* be a space, the parameter value will need to have it at the end. |
|
1320 |
* |
|
1321 |
* @since 0.71 |
|
1322 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1323 |
* @param string $prefix Optional. What to display before the title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1324 |
* @param bool $display Optional, default is true. Whether to display or retrieve title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1325 |
* @return string|void Title when retrieving. |
0 | 1326 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1327 |
function single_post_title( $prefix = '', $display = true ) { |
0 | 1328 |
$_post = get_queried_object(); |
1329 |
||
9 | 1330 |
if ( ! isset( $_post->post_title ) ) { |
0 | 1331 |
return; |
9 | 1332 |
} |
0 | 1333 |
|
5 | 1334 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1335 |
* Filters the page title for a single post. |
5 | 1336 |
* |
1337 |
* @since 0.71 |
|
1338 |
* |
|
1339 |
* @param string $_post_title The single post page title. |
|
1340 |
* @param object $_post The current queried object as returned by get_queried_object(). |
|
1341 |
*/ |
|
1342 |
$title = apply_filters( 'single_post_title', $_post->post_title, $_post ); |
|
9 | 1343 |
if ( $display ) { |
0 | 1344 |
echo $prefix . $title; |
9 | 1345 |
} else { |
0 | 1346 |
return $prefix . $title; |
9 | 1347 |
} |
0 | 1348 |
} |
1349 |
||
1350 |
/** |
|
1351 |
* Display or retrieve title for a post type archive. |
|
1352 |
* |
|
1353 |
* This is optimized for archive.php and archive-{$post_type}.php template files |
|
1354 |
* for displaying the title of the post type. |
|
1355 |
* |
|
1356 |
* @since 3.1.0 |
|
1357 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1358 |
* @param string $prefix Optional. What to display before the title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1359 |
* @param bool $display Optional, default is true. Whether to display or retrieve title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1360 |
* @return string|void Title when retrieving, null when displaying or failure. |
0 | 1361 |
*/ |
1362 |
function post_type_archive_title( $prefix = '', $display = true ) { |
|
9 | 1363 |
if ( ! is_post_type_archive() ) { |
0 | 1364 |
return; |
9 | 1365 |
} |
0 | 1366 |
|
1367 |
$post_type = get_query_var( 'post_type' ); |
|
9 | 1368 |
if ( is_array( $post_type ) ) { |
0 | 1369 |
$post_type = reset( $post_type ); |
9 | 1370 |
} |
0 | 1371 |
|
1372 |
$post_type_obj = get_post_type_object( $post_type ); |
|
5 | 1373 |
|
1374 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1375 |
* Filters the post type archive title. |
5 | 1376 |
* |
1377 |
* @since 3.1.0 |
|
1378 |
* |
|
1379 |
* @param string $post_type_name Post type 'name' label. |
|
1380 |
* @param string $post_type Post type. |
|
1381 |
*/ |
|
1382 |
$title = apply_filters( 'post_type_archive_title', $post_type_obj->labels->name, $post_type ); |
|
0 | 1383 |
|
9 | 1384 |
if ( $display ) { |
0 | 1385 |
echo $prefix . $title; |
9 | 1386 |
} else { |
0 | 1387 |
return $prefix . $title; |
9 | 1388 |
} |
0 | 1389 |
} |
1390 |
||
1391 |
/** |
|
1392 |
* Display or retrieve page title for category archive. |
|
1393 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1394 |
* Useful for category template files for displaying the category page title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1395 |
* The prefix does not automatically place a space between the prefix, so if |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1396 |
* there should be a space, the parameter value will need to have it at the end. |
0 | 1397 |
* |
1398 |
* @since 0.71 |
|
1399 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1400 |
* @param string $prefix Optional. What to display before the title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1401 |
* @param bool $display Optional, default is true. Whether to display or retrieve title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1402 |
* @return string|void Title when retrieving. |
0 | 1403 |
*/ |
1404 |
function single_cat_title( $prefix = '', $display = true ) { |
|
1405 |
return single_term_title( $prefix, $display ); |
|
1406 |
} |
|
1407 |
||
1408 |
/** |
|
1409 |
* Display or retrieve page title for tag post archive. |
|
1410 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1411 |
* Useful for tag template files for displaying the tag page title. The prefix |
0 | 1412 |
* does not automatically place a space between the prefix, so if there should |
1413 |
* be a space, the parameter value will need to have it at the end. |
|
1414 |
* |
|
1415 |
* @since 2.3.0 |
|
1416 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1417 |
* @param string $prefix Optional. What to display before the title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1418 |
* @param bool $display Optional, default is true. Whether to display or retrieve title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1419 |
* @return string|void Title when retrieving. |
0 | 1420 |
*/ |
1421 |
function single_tag_title( $prefix = '', $display = true ) { |
|
1422 |
return single_term_title( $prefix, $display ); |
|
1423 |
} |
|
1424 |
||
1425 |
/** |
|
1426 |
* Display or retrieve page title for taxonomy term archive. |
|
1427 |
* |
|
1428 |
* Useful for taxonomy term template files for displaying the taxonomy term page title. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1429 |
* The prefix does not automatically place a space between the prefix, so if there should |
0 | 1430 |
* be a space, the parameter value will need to have it at the end. |
1431 |
* |
|
1432 |
* @since 3.1.0 |
|
1433 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1434 |
* @param string $prefix Optional. What to display before the title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1435 |
* @param bool $display Optional, default is true. Whether to display or retrieve title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1436 |
* @return string|void Title when retrieving. |
0 | 1437 |
*/ |
1438 |
function single_term_title( $prefix = '', $display = true ) { |
|
1439 |
$term = get_queried_object(); |
|
1440 |
||
9 | 1441 |
if ( ! $term ) { |
0 | 1442 |
return; |
9 | 1443 |
} |
0 | 1444 |
|
5 | 1445 |
if ( is_category() ) { |
1446 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1447 |
* Filters the category archive page title. |
5 | 1448 |
* |
1449 |
* @since 2.0.10 |
|
1450 |
* |
|
1451 |
* @param string $term_name Category name for archive being displayed. |
|
1452 |
*/ |
|
0 | 1453 |
$term_name = apply_filters( 'single_cat_title', $term->name ); |
5 | 1454 |
} elseif ( is_tag() ) { |
1455 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1456 |
* Filters the tag archive page title. |
5 | 1457 |
* |
1458 |
* @since 2.3.0 |
|
1459 |
* |
|
1460 |
* @param string $term_name Tag name for archive being displayed. |
|
1461 |
*/ |
|
0 | 1462 |
$term_name = apply_filters( 'single_tag_title', $term->name ); |
5 | 1463 |
} elseif ( is_tax() ) { |
1464 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1465 |
* Filters the custom taxonomy archive page title. |
5 | 1466 |
* |
1467 |
* @since 3.1.0 |
|
1468 |
* |
|
1469 |
* @param string $term_name Term name for archive being displayed. |
|
1470 |
*/ |
|
0 | 1471 |
$term_name = apply_filters( 'single_term_title', $term->name ); |
5 | 1472 |
} else { |
0 | 1473 |
return; |
5 | 1474 |
} |
0 | 1475 |
|
9 | 1476 |
if ( empty( $term_name ) ) { |
0 | 1477 |
return; |
9 | 1478 |
} |
1479 |
||
1480 |
if ( $display ) { |
|
0 | 1481 |
echo $prefix . $term_name; |
9 | 1482 |
} else { |
0 | 1483 |
return $prefix . $term_name; |
9 | 1484 |
} |
0 | 1485 |
} |
1486 |
||
1487 |
/** |
|
1488 |
* Display or retrieve page title for post archive based on date. |
|
1489 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1490 |
* Useful for when the template only needs to display the month and year, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1491 |
* if either are available. The prefix does not automatically place a space |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1492 |
* between the prefix, so if there should be a space, the parameter value |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1493 |
* will need to have it at the end. |
0 | 1494 |
* |
1495 |
* @since 0.71 |
|
1496 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1497 |
* @global WP_Locale $wp_locale |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1498 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1499 |
* @param string $prefix Optional. What to display before the title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1500 |
* @param bool $display Optional, default is true. Whether to display or retrieve title. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1501 |
* @return string|void Title when retrieving. |
0 | 1502 |
*/ |
9 | 1503 |
function single_month_title( $prefix = '', $display = true ) { |
0 | 1504 |
global $wp_locale; |
1505 |
||
9 | 1506 |
$m = get_query_var( 'm' ); |
1507 |
$year = get_query_var( 'year' ); |
|
1508 |
$monthnum = get_query_var( 'monthnum' ); |
|
1509 |
||
1510 |
if ( ! empty( $monthnum ) && ! empty( $year ) ) { |
|
1511 |
$my_year = $year; |
|
1512 |
$my_month = $wp_locale->get_month( $monthnum ); |
|
1513 |
} elseif ( ! empty( $m ) ) { |
|
1514 |
$my_year = substr( $m, 0, 4 ); |
|
1515 |
$my_month = $wp_locale->get_month( substr( $m, 4, 2 ) ); |
|
0 | 1516 |
} |
1517 |
||
9 | 1518 |
if ( empty( $my_month ) ) { |
0 | 1519 |
return false; |
9 | 1520 |
} |
0 | 1521 |
|
1522 |
$result = $prefix . $my_month . $prefix . $my_year; |
|
1523 |
||
9 | 1524 |
if ( ! $display ) { |
0 | 1525 |
return $result; |
9 | 1526 |
} |
0 | 1527 |
echo $result; |
1528 |
} |
|
1529 |
||
1530 |
/** |
|
5 | 1531 |
* Display the archive title based on the queried object. |
1532 |
* |
|
1533 |
* @since 4.1.0 |
|
1534 |
* |
|
1535 |
* @see get_the_archive_title() |
|
1536 |
* |
|
1537 |
* @param string $before Optional. Content to prepend to the title. Default empty. |
|
1538 |
* @param string $after Optional. Content to append to the title. Default empty. |
|
1539 |
*/ |
|
1540 |
function the_archive_title( $before = '', $after = '' ) { |
|
1541 |
$title = get_the_archive_title(); |
|
1542 |
||
1543 |
if ( ! empty( $title ) ) { |
|
1544 |
echo $before . $title . $after; |
|
1545 |
} |
|
1546 |
} |
|
1547 |
||
1548 |
/** |
|
1549 |
* Retrieve the archive title based on the queried object. |
|
1550 |
* |
|
1551 |
* @since 4.1.0 |
|
1552 |
* |
|
1553 |
* @return string Archive title. |
|
1554 |
*/ |
|
1555 |
function get_the_archive_title() { |
|
1556 |
if ( is_category() ) { |
|
9 | 1557 |
/* translators: Category archive title. %s: Category name */ |
5 | 1558 |
$title = sprintf( __( 'Category: %s' ), single_cat_title( '', false ) ); |
1559 |
} elseif ( is_tag() ) { |
|
9 | 1560 |
/* translators: Tag archive title. %s: Tag name */ |
5 | 1561 |
$title = sprintf( __( 'Tag: %s' ), single_tag_title( '', false ) ); |
1562 |
} elseif ( is_author() ) { |
|
9 | 1563 |
/* translators: Author archive title. %s: Author name */ |
5 | 1564 |
$title = sprintf( __( 'Author: %s' ), '<span class="vcard">' . get_the_author() . '</span>' ); |
1565 |
} elseif ( is_year() ) { |
|
9 | 1566 |
/* translators: Yearly archive title. %s: Year */ |
5 | 1567 |
$title = sprintf( __( 'Year: %s' ), get_the_date( _x( 'Y', 'yearly archives date format' ) ) ); |
1568 |
} elseif ( is_month() ) { |
|
9 | 1569 |
/* translators: Monthly archive title. %s: Month name and year */ |
5 | 1570 |
$title = sprintf( __( 'Month: %s' ), get_the_date( _x( 'F Y', 'monthly archives date format' ) ) ); |
1571 |
} elseif ( is_day() ) { |
|
9 | 1572 |
/* translators: Daily archive title. %s: Date */ |
5 | 1573 |
$title = sprintf( __( 'Day: %s' ), get_the_date( _x( 'F j, Y', 'daily archives date format' ) ) ); |
1574 |
} elseif ( is_tax( 'post_format' ) ) { |
|
1575 |
if ( is_tax( 'post_format', 'post-format-aside' ) ) { |
|
1576 |
$title = _x( 'Asides', 'post format archive title' ); |
|
1577 |
} elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) { |
|
1578 |
$title = _x( 'Galleries', 'post format archive title' ); |
|
1579 |
} elseif ( is_tax( 'post_format', 'post-format-image' ) ) { |
|
1580 |
$title = _x( 'Images', 'post format archive title' ); |
|
1581 |
} elseif ( is_tax( 'post_format', 'post-format-video' ) ) { |
|
1582 |
$title = _x( 'Videos', 'post format archive title' ); |
|
1583 |
} elseif ( is_tax( 'post_format', 'post-format-quote' ) ) { |
|
1584 |
$title = _x( 'Quotes', 'post format archive title' ); |
|
1585 |
} elseif ( is_tax( 'post_format', 'post-format-link' ) ) { |
|
1586 |
$title = _x( 'Links', 'post format archive title' ); |
|
1587 |
} elseif ( is_tax( 'post_format', 'post-format-status' ) ) { |
|
1588 |
$title = _x( 'Statuses', 'post format archive title' ); |
|
1589 |
} elseif ( is_tax( 'post_format', 'post-format-audio' ) ) { |
|
1590 |
$title = _x( 'Audio', 'post format archive title' ); |
|
1591 |
} elseif ( is_tax( 'post_format', 'post-format-chat' ) ) { |
|
1592 |
$title = _x( 'Chats', 'post format archive title' ); |
|
1593 |
} |
|
1594 |
} elseif ( is_post_type_archive() ) { |
|
9 | 1595 |
/* translators: Post type archive title. %s: Post type name */ |
5 | 1596 |
$title = sprintf( __( 'Archives: %s' ), post_type_archive_title( '', false ) ); |
1597 |
} elseif ( is_tax() ) { |
|
1598 |
$tax = get_taxonomy( get_queried_object()->taxonomy ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1599 |
/* translators: Taxonomy term archive title. 1: Taxonomy singular name, 2: Current taxonomy term */ |
5 | 1600 |
$title = sprintf( __( '%1$s: %2$s' ), $tax->labels->singular_name, single_term_title( '', false ) ); |
1601 |
} else { |
|
1602 |
$title = __( 'Archives' ); |
|
1603 |
} |
|
1604 |
||
1605 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1606 |
* Filters the archive title. |
5 | 1607 |
* |
1608 |
* @since 4.1.0 |
|
1609 |
* |
|
1610 |
* @param string $title Archive title to be displayed. |
|
1611 |
*/ |
|
1612 |
return apply_filters( 'get_the_archive_title', $title ); |
|
1613 |
} |
|
1614 |
||
1615 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1616 |
* Display category, tag, term, or author description. |
5 | 1617 |
* |
1618 |
* @since 4.1.0 |
|
1619 |
* |
|
1620 |
* @see get_the_archive_description() |
|
1621 |
* |
|
1622 |
* @param string $before Optional. Content to prepend to the description. Default empty. |
|
1623 |
* @param string $after Optional. Content to append to the description. Default empty. |
|
1624 |
*/ |
|
1625 |
function the_archive_description( $before = '', $after = '' ) { |
|
1626 |
$description = get_the_archive_description(); |
|
1627 |
if ( $description ) { |
|
1628 |
echo $before . $description . $after; |
|
1629 |
} |
|
1630 |
} |
|
1631 |
||
1632 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1633 |
* Retrieves the description for an author, post type, or term archive. |
5 | 1634 |
* |
1635 |
* @since 4.1.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1636 |
* @since 4.7.0 Added support for author archives. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1637 |
* @since 4.9.0 Added support for post type archives. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1638 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1639 |
* @see term_description() |
5 | 1640 |
* |
1641 |
* @return string Archive description. |
|
1642 |
*/ |
|
1643 |
function get_the_archive_description() { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1644 |
if ( is_author() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1645 |
$description = get_the_author_meta( 'description' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1646 |
} elseif ( is_post_type_archive() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1647 |
$description = get_the_post_type_description(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1648 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1649 |
$description = term_description(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1650 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1651 |
|
5 | 1652 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1653 |
* Filters the archive description. |
5 | 1654 |
* |
1655 |
* @since 4.1.0 |
|
1656 |
* |
|
1657 |
* @param string $description Archive description to be displayed. |
|
1658 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1659 |
return apply_filters( 'get_the_archive_description', $description ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1660 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1661 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1662 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1663 |
* Retrieves the description for a post type archive. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1664 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1665 |
* @since 4.9.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1666 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1667 |
* @return string The post type description. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1668 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1669 |
function get_the_post_type_description() { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1670 |
$post_type = get_query_var( 'post_type' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1671 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1672 |
if ( is_array( $post_type ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1673 |
$post_type = reset( $post_type ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1674 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1675 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1676 |
$post_type_obj = get_post_type_object( $post_type ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1677 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1678 |
// Check if a description is set. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1679 |
if ( isset( $post_type_obj->description ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1680 |
$description = $post_type_obj->description; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1681 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1682 |
$description = ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1683 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1684 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1685 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1686 |
* Filters the description for a post type archive. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1687 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1688 |
* @since 4.9.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1689 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1690 |
* @param string $description The post type description. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1691 |
* @param WP_Post_Type $post_type_obj The post type object. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1692 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1693 |
return apply_filters( 'get_the_post_type_description', $description, $post_type_obj ); |
5 | 1694 |
} |
1695 |
||
1696 |
/** |
|
0 | 1697 |
* Retrieve archive link content based on predefined or custom code. |
1698 |
* |
|
1699 |
* The format can be one of four styles. The 'link' for head element, 'option' |
|
1700 |
* for use in the select element, 'html' for use in list (either ol or ul HTML |
|
1701 |
* elements). Custom content is also supported using the before and after |
|
1702 |
* parameters. |
|
1703 |
* |
|
5 | 1704 |
* The 'link' format uses the `<link>` HTML element with the **archives** |
0 | 1705 |
* relationship. The before and after parameters are not used. The text |
1706 |
* parameter is used to describe the link. |
|
1707 |
* |
|
1708 |
* The 'option' format uses the option HTML element for use in select element. |
|
1709 |
* The value is the url parameter and the before and after parameters are used |
|
1710 |
* between the text description. |
|
1711 |
* |
|
1712 |
* The 'html' format, which is the default, uses the li HTML element for use in |
|
1713 |
* the list HTML elements. The before parameter is before the link and the after |
|
1714 |
* parameter is after the closing link. |
|
1715 |
* |
|
1716 |
* The custom format uses the before parameter before the link ('a' HTML |
|
1717 |
* element) and the after parameter after the closing link tag. If the above |
|
1718 |
* three values for the format are not used, then custom format is assumed. |
|
1719 |
* |
|
1720 |
* @since 1.0.0 |
|
9 | 1721 |
* @since 5.2.0 Added the `$selected` parameter. |
1722 |
* |
|
1723 |
* @param string $url URL to archive. |
|
1724 |
* @param string $text Archive text description. |
|
1725 |
* @param string $format Optional, default is 'html'. Can be 'link', 'option', 'html', or custom. |
|
1726 |
* @param string $before Optional. Content to prepend to the description. Default empty. |
|
1727 |
* @param string $after Optional. Content to append to the description. Default empty. |
|
1728 |
* @param bool $selected Optional. Set to true if the current page is the selected archive page. |
|
0 | 1729 |
* @return string HTML link content for archive. |
1730 |
*/ |
|
9 | 1731 |
function get_archives_link( $url, $text, $format = 'html', $before = '', $after = '', $selected = false ) { |
1732 |
$text = wptexturize( $text ); |
|
1733 |
$url = esc_url( $url ); |
|
1734 |
||
1735 |
if ( 'link' == $format ) { |
|
0 | 1736 |
$link_html = "\t<link rel='archives' title='" . esc_attr( $text ) . "' href='$url' />\n"; |
9 | 1737 |
} elseif ( 'option' == $format ) { |
1738 |
$selected_attr = $selected ? " selected='selected'" : ''; |
|
1739 |
$link_html = "\t<option value='$url'$selected_attr>$before $text $after</option>\n"; |
|
1740 |
} elseif ( 'html' == $format ) { |
|
0 | 1741 |
$link_html = "\t<li>$before<a href='$url'>$text</a>$after</li>\n"; |
9 | 1742 |
} else { // custom |
0 | 1743 |
$link_html = "\t$before<a href='$url'>$text</a>$after\n"; |
9 | 1744 |
} |
0 | 1745 |
|
5 | 1746 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1747 |
* Filters the archive link content. |
5 | 1748 |
* |
1749 |
* @since 2.6.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1750 |
* @since 4.5.0 Added the `$url`, `$text`, `$format`, `$before`, and `$after` parameters. |
9 | 1751 |
* @since 5.2.0 Added the `$selected` parameter. |
5 | 1752 |
* |
1753 |
* @param string $link_html The archive HTML link content. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1754 |
* @param string $url URL to archive. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1755 |
* @param string $text Archive text description. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1756 |
* @param string $format Link format. Can be 'link', 'option', 'html', or custom. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1757 |
* @param string $before Content to prepend to the description. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1758 |
* @param string $after Content to append to the description. |
9 | 1759 |
* @param bool $selected True if the current page is the selected archive. |
5 | 1760 |
*/ |
9 | 1761 |
return apply_filters( 'get_archives_link', $link_html, $url, $text, $format, $before, $after, $selected ); |
0 | 1762 |
} |
1763 |
||
1764 |
/** |
|
1765 |
* Display archive links based on type and format. |
|
1766 |
* |
|
1767 |
* @since 1.2.0 |
|
9 | 1768 |
* @since 4.4.0 The `$post_type` argument was added. |
1769 |
* @since 5.2.0 The `$year`, `$monthnum`, `$day`, and `$w` arguments were added. |
|
0 | 1770 |
* |
5 | 1771 |
* @see get_archives_link() |
1772 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1773 |
* @global wpdb $wpdb |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1774 |
* @global WP_Locale $wp_locale |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1775 |
* |
5 | 1776 |
* @param string|array $args { |
1777 |
* Default archive links arguments. Optional. |
|
1778 |
* |
|
1779 |
* @type string $type Type of archive to retrieve. Accepts 'daily', 'weekly', 'monthly', |
|
1780 |
* 'yearly', 'postbypost', or 'alpha'. Both 'postbypost' and 'alpha' |
|
1781 |
* display the same archive link list as well as post titles instead |
|
1782 |
* of displaying dates. The difference between the two is that 'alpha' |
|
1783 |
* will order by post title and 'postbypost' will order by post date. |
|
1784 |
* Default 'monthly'. |
|
1785 |
* @type string|int $limit Number of links to limit the query to. Default empty (no limit). |
|
1786 |
* @type string $format Format each link should take using the $before and $after args. |
|
1787 |
* Accepts 'link' (`<link>` tag), 'option' (`<option>` tag), 'html' |
|
1788 |
* (`<li>` tag), or a custom format, which generates a link anchor |
|
1789 |
* with $before preceding and $after succeeding. Default 'html'. |
|
1790 |
* @type string $before Markup to prepend to the beginning of each link. Default empty. |
|
1791 |
* @type string $after Markup to append to the end of each link. Default empty. |
|
1792 |
* @type bool $show_post_count Whether to display the post count alongside the link. Default false. |
|
1793 |
* @type bool|int $echo Whether to echo or return the links list. Default 1|true to echo. |
|
1794 |
* @type string $order Whether to use ascending or descending order. Accepts 'ASC', or 'DESC'. |
|
1795 |
* Default 'DESC'. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1796 |
* @type string $post_type Post type. Default 'post'. |
9 | 1797 |
* @type string $year Year. Default current year. |
1798 |
* @type string $monthnum Month number. Default current month number. |
|
1799 |
* @type string $day Day. Default current day. |
|
1800 |
* @type string $w Week. Default current week. |
|
5 | 1801 |
* } |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1802 |
* @return string|void String when retrieving. |
0 | 1803 |
*/ |
5 | 1804 |
function wp_get_archives( $args = '' ) { |
0 | 1805 |
global $wpdb, $wp_locale; |
1806 |
||
1807 |
$defaults = array( |
|
9 | 1808 |
'type' => 'monthly', |
1809 |
'limit' => '', |
|
1810 |
'format' => 'html', |
|
1811 |
'before' => '', |
|
1812 |
'after' => '', |
|
1813 |
'show_post_count' => false, |
|
1814 |
'echo' => 1, |
|
1815 |
'order' => 'DESC', |
|
1816 |
'post_type' => 'post', |
|
1817 |
'year' => get_query_var( 'year' ), |
|
1818 |
'monthnum' => get_query_var( 'monthnum' ), |
|
1819 |
'day' => get_query_var( 'day' ), |
|
1820 |
'w' => get_query_var( 'w' ), |
|
0 | 1821 |
); |
1822 |
||
1823 |
$r = wp_parse_args( $args, $defaults ); |
|
1824 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1825 |
$post_type_object = get_post_type_object( $r['post_type'] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1826 |
if ( ! is_post_type_viewable( $post_type_object ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1827 |
return; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1828 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1829 |
$r['post_type'] = $post_type_object->name; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1830 |
|
5 | 1831 |
if ( '' == $r['type'] ) { |
1832 |
$r['type'] = 'monthly'; |
|
0 | 1833 |
} |
1834 |
||
5 | 1835 |
if ( ! empty( $r['limit'] ) ) { |
1836 |
$r['limit'] = absint( $r['limit'] ); |
|
1837 |
$r['limit'] = ' LIMIT ' . $r['limit']; |
|
1838 |
} |
|
1839 |
||
1840 |
$order = strtoupper( $r['order'] ); |
|
1841 |
if ( $order !== 'ASC' ) { |
|
0 | 1842 |
$order = 'DESC'; |
5 | 1843 |
} |
0 | 1844 |
|
1845 |
// this is what will separate dates on weekly archive links |
|
1846 |
$archive_week_separator = '–'; |
|
1847 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1848 |
$sql_where = $wpdb->prepare( "WHERE post_type = %s AND post_status = 'publish'", $r['post_type'] ); |
0 | 1849 |
|
5 | 1850 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1851 |
* Filters the SQL WHERE clause for retrieving archives. |
5 | 1852 |
* |
1853 |
* @since 2.2.0 |
|
1854 |
* |
|
1855 |
* @param string $sql_where Portion of SQL query containing the WHERE clause. |
|
1856 |
* @param array $r An array of default arguments. |
|
1857 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1858 |
$where = apply_filters( 'getarchives_where', $sql_where, $r ); |
5 | 1859 |
|
1860 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1861 |
* Filters the SQL JOIN clause for retrieving archives. |
5 | 1862 |
* |
1863 |
* @since 2.2.0 |
|
1864 |
* |
|
1865 |
* @param string $sql_join Portion of SQL query containing JOIN clause. |
|
1866 |
* @param array $r An array of default arguments. |
|
1867 |
*/ |
|
0 | 1868 |
$join = apply_filters( 'getarchives_join', '', $r ); |
1869 |
||
1870 |
$output = ''; |
|
1871 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1872 |
$last_changed = wp_cache_get_last_changed( 'posts' ); |
0 | 1873 |
|
5 | 1874 |
$limit = $r['limit']; |
1875 |
||
1876 |
if ( 'monthly' == $r['type'] ) { |
|
0 | 1877 |
$query = "SELECT YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, count(ID) as posts FROM $wpdb->posts $join $where GROUP BY YEAR(post_date), MONTH(post_date) ORDER BY post_date $order $limit"; |
9 | 1878 |
$key = md5( $query ); |
1879 |
$key = "wp_get_archives:$key:$last_changed"; |
|
0 | 1880 |
if ( ! $results = wp_cache_get( $key, 'posts' ) ) { |
1881 |
$results = $wpdb->get_results( $query ); |
|
1882 |
wp_cache_set( $key, $results, 'posts' ); |
|
1883 |
} |
|
1884 |
if ( $results ) { |
|
5 | 1885 |
$after = $r['after']; |
0 | 1886 |
foreach ( (array) $results as $result ) { |
1887 |
$url = get_month_link( $result->year, $result->month ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1888 |
if ( 'post' !== $r['post_type'] ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1889 |
$url = add_query_arg( 'post_type', $r['post_type'], $url ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1890 |
} |
0 | 1891 |
/* translators: 1: month name, 2: 4-digit year */ |
5 | 1892 |
$text = sprintf( __( '%1$s %2$d' ), $wp_locale->get_month( $result->month ), $result->year ); |
1893 |
if ( $r['show_post_count'] ) { |
|
1894 |
$r['after'] = ' (' . $result->posts . ')' . $after; |
|
1895 |
} |
|
9 | 1896 |
$selected = is_archive() && (string) $r['year'] === $result->year && (string) $r['monthnum'] === $result->month; |
1897 |
$output .= get_archives_link( $url, $text, $r['format'], $r['before'], $r['after'], $selected ); |
|
0 | 1898 |
} |
1899 |
} |
|
5 | 1900 |
} elseif ( 'yearly' == $r['type'] ) { |
0 | 1901 |
$query = "SELECT YEAR(post_date) AS `year`, count(ID) as posts FROM $wpdb->posts $join $where GROUP BY YEAR(post_date) ORDER BY post_date $order $limit"; |
9 | 1902 |
$key = md5( $query ); |
1903 |
$key = "wp_get_archives:$key:$last_changed"; |
|
0 | 1904 |
if ( ! $results = wp_cache_get( $key, 'posts' ) ) { |
1905 |
$results = $wpdb->get_results( $query ); |
|
1906 |
wp_cache_set( $key, $results, 'posts' ); |
|
1907 |
} |
|
1908 |
if ( $results ) { |
|
5 | 1909 |
$after = $r['after']; |
9 | 1910 |
foreach ( (array) $results as $result ) { |
5 | 1911 |
$url = get_year_link( $result->year ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1912 |
if ( 'post' !== $r['post_type'] ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1913 |
$url = add_query_arg( 'post_type', $r['post_type'], $url ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1914 |
} |
5 | 1915 |
$text = sprintf( '%d', $result->year ); |
1916 |
if ( $r['show_post_count'] ) { |
|
1917 |
$r['after'] = ' (' . $result->posts . ')' . $after; |
|
1918 |
} |
|
9 | 1919 |
$selected = is_archive() && (string) $r['year'] === $result->year; |
1920 |
$output .= get_archives_link( $url, $text, $r['format'], $r['before'], $r['after'], $selected ); |
|
0 | 1921 |
} |
1922 |
} |
|
5 | 1923 |
} elseif ( 'daily' == $r['type'] ) { |
0 | 1924 |
$query = "SELECT YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, DAYOFMONTH(post_date) AS `dayofmonth`, count(ID) as posts FROM $wpdb->posts $join $where GROUP BY YEAR(post_date), MONTH(post_date), DAYOFMONTH(post_date) ORDER BY post_date $order $limit"; |
9 | 1925 |
$key = md5( $query ); |
1926 |
$key = "wp_get_archives:$key:$last_changed"; |
|
0 | 1927 |
if ( ! $results = wp_cache_get( $key, 'posts' ) ) { |
1928 |
$results = $wpdb->get_results( $query ); |
|
1929 |
wp_cache_set( $key, $results, 'posts' ); |
|
1930 |
} |
|
1931 |
if ( $results ) { |
|
5 | 1932 |
$after = $r['after']; |
0 | 1933 |
foreach ( (array) $results as $result ) { |
9 | 1934 |
$url = get_day_link( $result->year, $result->month, $result->dayofmonth ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1935 |
if ( 'post' !== $r['post_type'] ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1936 |
$url = add_query_arg( 'post_type', $r['post_type'], $url ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1937 |
} |
5 | 1938 |
$date = sprintf( '%1$d-%2$02d-%3$02d 00:00:00', $result->year, $result->month, $result->dayofmonth ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1939 |
$text = mysql2date( get_option( 'date_format' ), $date ); |
5 | 1940 |
if ( $r['show_post_count'] ) { |
1941 |
$r['after'] = ' (' . $result->posts . ')' . $after; |
|
1942 |
} |
|
9 | 1943 |
$selected = is_archive() && (string) $r['year'] === $result->year && (string) $r['monthnum'] === $result->month && (string) $r['day'] === $result->dayofmonth; |
1944 |
$output .= get_archives_link( $url, $text, $r['format'], $r['before'], $r['after'], $selected ); |
|
0 | 1945 |
} |
1946 |
} |
|
5 | 1947 |
} elseif ( 'weekly' == $r['type'] ) { |
9 | 1948 |
$week = _wp_mysql_week( '`post_date`' ); |
0 | 1949 |
$query = "SELECT DISTINCT $week AS `week`, YEAR( `post_date` ) AS `yr`, DATE_FORMAT( `post_date`, '%Y-%m-%d' ) AS `yyyymmdd`, count( `ID` ) AS `posts` FROM `$wpdb->posts` $join $where GROUP BY $week, YEAR( `post_date` ) ORDER BY `post_date` $order $limit"; |
9 | 1950 |
$key = md5( $query ); |
1951 |
$key = "wp_get_archives:$key:$last_changed"; |
|
0 | 1952 |
if ( ! $results = wp_cache_get( $key, 'posts' ) ) { |
1953 |
$results = $wpdb->get_results( $query ); |
|
1954 |
wp_cache_set( $key, $results, 'posts' ); |
|
1955 |
} |
|
1956 |
$arc_w_last = ''; |
|
1957 |
if ( $results ) { |
|
5 | 1958 |
$after = $r['after']; |
1959 |
foreach ( (array) $results as $result ) { |
|
1960 |
if ( $result->week != $arc_w_last ) { |
|
1961 |
$arc_year = $result->yr; |
|
1962 |
$arc_w_last = $result->week; |
|
1963 |
$arc_week = get_weekstartend( $result->yyyymmdd, get_option( 'start_of_week' ) ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1964 |
$arc_week_start = date_i18n( get_option( 'date_format' ), $arc_week['start'] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1965 |
$arc_week_end = date_i18n( get_option( 'date_format' ), $arc_week['end'] ); |
9 | 1966 |
$url = add_query_arg( |
1967 |
array( |
|
1968 |
'm' => $arc_year, |
|
1969 |
'w' => $result->week, |
|
1970 |
), |
|
1971 |
home_url( '/' ) |
|
1972 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1973 |
if ( 'post' !== $r['post_type'] ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1974 |
$url = add_query_arg( 'post_type', $r['post_type'], $url ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
1975 |
} |
9 | 1976 |
$text = $arc_week_start . $archive_week_separator . $arc_week_end; |
5 | 1977 |
if ( $r['show_post_count'] ) { |
1978 |
$r['after'] = ' (' . $result->posts . ')' . $after; |
|
0 | 1979 |
} |
9 | 1980 |
$selected = is_archive() && (string) $r['year'] === $result->yr && (string) $r['w'] === $result->week; |
1981 |
$output .= get_archives_link( $url, $text, $r['format'], $r['before'], $r['after'], $selected ); |
|
0 | 1982 |
} |
5 | 1983 |
} |
0 | 1984 |
} |
9 | 1985 |
} elseif ( ( 'postbypost' == $r['type'] ) || ( 'alpha' == $r['type'] ) ) { |
5 | 1986 |
$orderby = ( 'alpha' == $r['type'] ) ? 'post_title ASC ' : 'post_date DESC, ID DESC '; |
9 | 1987 |
$query = "SELECT * FROM $wpdb->posts $join $where ORDER BY $orderby $limit"; |
1988 |
$key = md5( $query ); |
|
1989 |
$key = "wp_get_archives:$key:$last_changed"; |
|
0 | 1990 |
if ( ! $results = wp_cache_get( $key, 'posts' ) ) { |
1991 |
$results = $wpdb->get_results( $query ); |
|
1992 |
wp_cache_set( $key, $results, 'posts' ); |
|
1993 |
} |
|
1994 |
if ( $results ) { |
|
1995 |
foreach ( (array) $results as $result ) { |
|
1996 |
if ( $result->post_date != '0000-00-00 00:00:00' ) { |
|
5 | 1997 |
$url = get_permalink( $result ); |
0 | 1998 |
if ( $result->post_title ) { |
1999 |
/** This filter is documented in wp-includes/post-template.php */ |
|
2000 |
$text = strip_tags( apply_filters( 'the_title', $result->post_title, $result->ID ) ); |
|
2001 |
} else { |
|
2002 |
$text = $result->ID; |
|
2003 |
} |
|
9 | 2004 |
$selected = $result->ID === get_the_ID(); |
2005 |
$output .= get_archives_link( $url, $text, $r['format'], $r['before'], $r['after'], $selected ); |
|
0 | 2006 |
} |
2007 |
} |
|
2008 |
} |
|
2009 |
} |
|
5 | 2010 |
if ( $r['echo'] ) { |
0 | 2011 |
echo $output; |
5 | 2012 |
} else { |
0 | 2013 |
return $output; |
5 | 2014 |
} |
0 | 2015 |
} |
2016 |
||
2017 |
/** |
|
2018 |
* Get number of days since the start of the week. |
|
2019 |
* |
|
2020 |
* @since 1.5.0 |
|
2021 |
* |
|
2022 |
* @param int $num Number of day. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2023 |
* @return float Days since the start of the week. |
0 | 2024 |
*/ |
9 | 2025 |
function calendar_week_mod( $num ) { |
0 | 2026 |
$base = 7; |
9 | 2027 |
return ( $num - $base * floor( $num / $base ) ); |
0 | 2028 |
} |
2029 |
||
2030 |
/** |
|
2031 |
* Display calendar with days that have posts as links. |
|
2032 |
* |
|
2033 |
* The calendar is cached, which will be retrieved, if it exists. If there are |
|
2034 |
* no posts for the month, then it will not be displayed. |
|
2035 |
* |
|
2036 |
* @since 1.0.0 |
|
2037 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2038 |
* @global wpdb $wpdb |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2039 |
* @global int $m |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2040 |
* @global int $monthnum |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2041 |
* @global int $year |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2042 |
* @global WP_Locale $wp_locale |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2043 |
* @global array $posts |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2044 |
* |
0 | 2045 |
* @param bool $initial Optional, default is true. Use initial calendar names. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2046 |
* @param bool $echo Optional, default is true. Set to false for return. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2047 |
* @return string|void String when retrieving. |
0 | 2048 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2049 |
function get_calendar( $initial = true, $echo = true ) { |
0 | 2050 |
global $wpdb, $m, $monthnum, $year, $wp_locale, $posts; |
2051 |
||
9 | 2052 |
$key = md5( $m . $monthnum . $year ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2053 |
$cache = wp_cache_get( 'get_calendar', 'calendar' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2054 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2055 |
if ( $cache && is_array( $cache ) && isset( $cache[ $key ] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2056 |
/** This filter is documented in wp-includes/general-template.php */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2057 |
$output = apply_filters( 'get_calendar', $cache[ $key ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2058 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2059 |
if ( $echo ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2060 |
echo $output; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2061 |
return; |
0 | 2062 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2063 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2064 |
return $output; |
0 | 2065 |
} |
2066 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2067 |
if ( ! is_array( $cache ) ) { |
0 | 2068 |
$cache = array(); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2069 |
} |
0 | 2070 |
|
2071 |
// Quick check. If we have no posts at all, abort! |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2072 |
if ( ! $posts ) { |
9 | 2073 |
$gotsome = $wpdb->get_var( "SELECT 1 as test FROM $wpdb->posts WHERE post_type = 'post' AND post_status = 'publish' LIMIT 1" ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2074 |
if ( ! $gotsome ) { |
0 | 2075 |
$cache[ $key ] = ''; |
2076 |
wp_cache_set( 'get_calendar', $cache, 'calendar' ); |
|
2077 |
return; |
|
2078 |
} |
|
2079 |
} |
|
2080 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2081 |
if ( isset( $_GET['w'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2082 |
$w = (int) $_GET['w']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2083 |
} |
0 | 2084 |
// week_begins = 0 stands for Sunday |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2085 |
$week_begins = (int) get_option( 'start_of_week' ); |
0 | 2086 |
|
2087 |
// Let's figure out when we are |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2088 |
if ( ! empty( $monthnum ) && ! empty( $year ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2089 |
$thismonth = zeroise( intval( $monthnum ), 2 ); |
9 | 2090 |
$thisyear = (int) $year; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2091 |
} elseif ( ! empty( $w ) ) { |
0 | 2092 |
// We need to get the month from MySQL |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2093 |
$thisyear = (int) substr( $m, 0, 4 ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2094 |
//it seems MySQL's weeks disagree with PHP's |
9 | 2095 |
$d = ( ( $w - 1 ) * 7 ) + 6; |
2096 |
$thismonth = $wpdb->get_var( "SELECT DATE_FORMAT((DATE_ADD('{$thisyear}0101', INTERVAL $d DAY) ), '%m')" ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2097 |
} elseif ( ! empty( $m ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2098 |
$thisyear = (int) substr( $m, 0, 4 ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2099 |
if ( strlen( $m ) < 6 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2100 |
$thismonth = '01'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2101 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2102 |
$thismonth = zeroise( (int) substr( $m, 4, 2 ), 2 ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2103 |
} |
0 | 2104 |
} else { |
9 | 2105 |
$thisyear = current_time( 'Y' ); |
2106 |
$thismonth = current_time( 'm' ); |
|
0 | 2107 |
} |
2108 |
||
9 | 2109 |
$unixmonth = mktime( 0, 0, 0, $thismonth, 1, $thisyear ); |
2110 |
$last_day = date( 't', $unixmonth ); |
|
0 | 2111 |
|
2112 |
// Get the next and previous month and year with at least one post |
|
9 | 2113 |
$previous = $wpdb->get_row( |
2114 |
"SELECT MONTH(post_date) AS month, YEAR(post_date) AS year |
|
0 | 2115 |
FROM $wpdb->posts |
2116 |
WHERE post_date < '$thisyear-$thismonth-01' |
|
2117 |
AND post_type = 'post' AND post_status = 'publish' |
|
2118 |
ORDER BY post_date DESC |
|
9 | 2119 |
LIMIT 1" |
2120 |
); |
|
2121 |
$next = $wpdb->get_row( |
|
2122 |
"SELECT MONTH(post_date) AS month, YEAR(post_date) AS year |
|
0 | 2123 |
FROM $wpdb->posts |
2124 |
WHERE post_date > '$thisyear-$thismonth-{$last_day} 23:59:59' |
|
2125 |
AND post_type = 'post' AND post_status = 'publish' |
|
2126 |
ORDER BY post_date ASC |
|
9 | 2127 |
LIMIT 1" |
2128 |
); |
|
0 | 2129 |
|
2130 |
/* translators: Calendar caption: 1: month name, 2: 4-digit year */ |
|
9 | 2131 |
$calendar_caption = _x( '%1$s %2$s', 'calendar caption' ); |
2132 |
$calendar_output = '<table id="wp-calendar"> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2133 |
<caption>' . sprintf( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2134 |
$calendar_caption, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2135 |
$wp_locale->get_month( $thismonth ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2136 |
date( 'Y', $unixmonth ) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2137 |
) . '</caption> |
0 | 2138 |
<thead> |
2139 |
<tr>'; |
|
2140 |
||
2141 |
$myweek = array(); |
|
2142 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2143 |
for ( $wdcount = 0; $wdcount <= 6; $wdcount++ ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2144 |
$myweek[] = $wp_locale->get_weekday( ( $wdcount + $week_begins ) % 7 ); |
0 | 2145 |
} |
2146 |
||
2147 |
foreach ( $myweek as $wd ) { |
|
9 | 2148 |
$day_name = $initial ? $wp_locale->get_weekday_initial( $wd ) : $wp_locale->get_weekday_abbrev( $wd ); |
2149 |
$wd = esc_attr( $wd ); |
|
0 | 2150 |
$calendar_output .= "\n\t\t<th scope=\"col\" title=\"$wd\">$day_name</th>"; |
2151 |
} |
|
2152 |
||
2153 |
$calendar_output .= ' |
|
2154 |
</tr> |
|
2155 |
</thead> |
|
2156 |
||
2157 |
<tfoot> |
|
2158 |
<tr>'; |
|
2159 |
||
2160 |
if ( $previous ) { |
|
9 | 2161 |
$calendar_output .= "\n\t\t" . '<td colspan="3" id="prev"><a href="' . get_month_link( $previous->year, $previous->month ) . '">« ' . |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2162 |
$wp_locale->get_month_abbrev( $wp_locale->get_month( $previous->month ) ) . |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2163 |
'</a></td>'; |
0 | 2164 |
} else { |
9 | 2165 |
$calendar_output .= "\n\t\t" . '<td colspan="3" id="prev" class="pad"> </td>'; |
0 | 2166 |
} |
2167 |
||
9 | 2168 |
$calendar_output .= "\n\t\t" . '<td class="pad"> </td>'; |
0 | 2169 |
|
2170 |
if ( $next ) { |
|
9 | 2171 |
$calendar_output .= "\n\t\t" . '<td colspan="3" id="next"><a href="' . get_month_link( $next->year, $next->month ) . '">' . |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2172 |
$wp_locale->get_month_abbrev( $wp_locale->get_month( $next->month ) ) . |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2173 |
' »</a></td>'; |
0 | 2174 |
} else { |
9 | 2175 |
$calendar_output .= "\n\t\t" . '<td colspan="3" id="next" class="pad"> </td>'; |
0 | 2176 |
} |
2177 |
||
2178 |
$calendar_output .= ' |
|
2179 |
</tr> |
|
2180 |
</tfoot> |
|
2181 |
||
2182 |
<tbody> |
|
2183 |
<tr>'; |
|
2184 |
||
5 | 2185 |
$daywithpost = array(); |
2186 |
||
0 | 2187 |
// Get days with posts |
9 | 2188 |
$dayswithposts = $wpdb->get_results( |
2189 |
"SELECT DISTINCT DAYOFMONTH(post_date) |
|
0 | 2190 |
FROM $wpdb->posts WHERE post_date >= '{$thisyear}-{$thismonth}-01 00:00:00' |
2191 |
AND post_type = 'post' AND post_status = 'publish' |
|
9 | 2192 |
AND post_date <= '{$thisyear}-{$thismonth}-{$last_day} 23:59:59'", |
2193 |
ARRAY_N |
|
2194 |
); |
|
0 | 2195 |
if ( $dayswithposts ) { |
2196 |
foreach ( (array) $dayswithposts as $daywith ) { |
|
2197 |
$daywithpost[] = $daywith[0]; |
|
2198 |
} |
|
2199 |
} |
|
2200 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2201 |
// See how much we should pad in the beginning |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2202 |
$pad = calendar_week_mod( date( 'w', $unixmonth ) - $week_begins ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2203 |
if ( 0 != $pad ) { |
9 | 2204 |
$calendar_output .= "\n\t\t" . '<td colspan="' . esc_attr( $pad ) . '" class="pad"> </td>'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2205 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2206 |
|
9 | 2207 |
$newrow = false; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2208 |
$daysinmonth = (int) date( 't', $unixmonth ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2209 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2210 |
for ( $day = 1; $day <= $daysinmonth; ++$day ) { |
9 | 2211 |
if ( isset( $newrow ) && $newrow ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2212 |
$calendar_output .= "\n\t</tr>\n\t<tr>\n\t\t"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2213 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2214 |
$newrow = false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2215 |
|
9 | 2216 |
if ( $day == current_time( 'j' ) && |
2217 |
$thismonth == current_time( 'm' ) && |
|
2218 |
$thisyear == current_time( 'Y' ) ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2219 |
$calendar_output .= '<td id="today">'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2220 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2221 |
$calendar_output .= '<td>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2222 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2223 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2224 |
if ( in_array( $day, $daywithpost ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2225 |
// any posts today? |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2226 |
$date_format = date( _x( 'F j, Y', 'daily archives date format' ), strtotime( "{$thisyear}-{$thismonth}-{$day}" ) ); |
9 | 2227 |
/* translators: Post calendar label. %s: Date */ |
2228 |
$label = sprintf( __( 'Posts published on %s' ), $date_format ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2229 |
$calendar_output .= sprintf( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2230 |
'<a href="%s" aria-label="%s">%s</a>', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2231 |
get_day_link( $thisyear, $thismonth, $day ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2232 |
esc_attr( $label ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2233 |
$day |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2234 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2235 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2236 |
$calendar_output .= $day; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2237 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2238 |
$calendar_output .= '</td>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2239 |
|
9 | 2240 |
if ( 6 == calendar_week_mod( date( 'w', mktime( 0, 0, 0, $thismonth, $day, $thisyear ) ) - $week_begins ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2241 |
$newrow = true; |
0 | 2242 |
} |
2243 |
} |
|
2244 |
||
9 | 2245 |
$pad = 7 - calendar_week_mod( date( 'w', mktime( 0, 0, 0, $thismonth, $day, $thisyear ) ) - $week_begins ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2246 |
if ( $pad != 0 && $pad != 7 ) { |
9 | 2247 |
$calendar_output .= "\n\t\t" . '<td class="pad" colspan="' . esc_attr( $pad ) . '"> </td>'; |
0 | 2248 |
} |
2249 |
$calendar_output .= "\n\t</tr>\n\t</tbody>\n\t</table>"; |
|
2250 |
||
2251 |
$cache[ $key ] = $calendar_output; |
|
2252 |
wp_cache_set( 'get_calendar', $cache, 'calendar' ); |
|
2253 |
||
5 | 2254 |
if ( $echo ) { |
2255 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2256 |
* Filters the HTML calendar output. |
5 | 2257 |
* |
2258 |
* @since 3.0.0 |
|
2259 |
* |
|
2260 |
* @param string $calendar_output HTML output of the calendar. |
|
2261 |
*/ |
|
2262 |
echo apply_filters( 'get_calendar', $calendar_output ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2263 |
return; |
5 | 2264 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2265 |
/** This filter is documented in wp-includes/general-template.php */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2266 |
return apply_filters( 'get_calendar', $calendar_output ); |
0 | 2267 |
} |
2268 |
||
2269 |
/** |
|
2270 |
* Purge the cached results of get_calendar. |
|
2271 |
* |
|
2272 |
* @see get_calendar |
|
2273 |
* @since 2.1.0 |
|
2274 |
*/ |
|
2275 |
function delete_get_calendar_cache() { |
|
2276 |
wp_cache_delete( 'get_calendar', 'calendar' ); |
|
2277 |
} |
|
2278 |
||
2279 |
/** |
|
2280 |
* Display all of the allowed tags in HTML format with attributes. |
|
2281 |
* |
|
2282 |
* This is useful for displaying in the comment area, which elements and |
|
2283 |
* attributes are supported. As well as any plugins which want to display it. |
|
2284 |
* |
|
2285 |
* @since 1.0.1 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2286 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2287 |
* @global array $allowedtags |
0 | 2288 |
* |
2289 |
* @return string HTML allowed tags entity encoded. |
|
2290 |
*/ |
|
2291 |
function allowed_tags() { |
|
2292 |
global $allowedtags; |
|
2293 |
$allowed = ''; |
|
2294 |
foreach ( (array) $allowedtags as $tag => $attributes ) { |
|
9 | 2295 |
$allowed .= '<' . $tag; |
2296 |
if ( 0 < count( $attributes ) ) { |
|
0 | 2297 |
foreach ( $attributes as $attribute => $limits ) { |
9 | 2298 |
$allowed .= ' ' . $attribute . '=""'; |
0 | 2299 |
} |
2300 |
} |
|
2301 |
$allowed .= '> '; |
|
2302 |
} |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2303 |
return htmlentities( $allowed ); |
0 | 2304 |
} |
2305 |
||
9 | 2306 |
/***** Date/Time tags */ |
0 | 2307 |
|
2308 |
/** |
|
2309 |
* Outputs the date in iso8601 format for xml files. |
|
2310 |
* |
|
2311 |
* @since 1.0.0 |
|
2312 |
*/ |
|
2313 |
function the_date_xml() { |
|
2314 |
echo mysql2date( 'Y-m-d', get_post()->post_date, false ); |
|
2315 |
} |
|
2316 |
||
2317 |
/** |
|
5 | 2318 |
* Display or Retrieve the date the current post was written (once per date) |
0 | 2319 |
* |
2320 |
* Will only output the date if the current post's date is different from the |
|
2321 |
* previous one output. |
|
2322 |
* |
|
2323 |
* i.e. Only one date listing will show per day worth of posts shown in the loop, even if the |
|
2324 |
* function is called several times for each post. |
|
2325 |
* |
|
2326 |
* HTML output can be filtered with 'the_date'. |
|
2327 |
* Date string output can be filtered with 'get_the_date'. |
|
2328 |
* |
|
2329 |
* @since 0.71 |
|
5 | 2330 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2331 |
* @global string|int|bool $currentday |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2332 |
* @global string|int|bool $previousday |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2333 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2334 |
* @param string $d Optional. PHP date format defaults to the date_format option if not specified. |
0 | 2335 |
* @param string $before Optional. Output before the date. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2336 |
* @param string $after Optional. Output after the date. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2337 |
* @param bool $echo Optional, default is display. Whether to echo the date or return it. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2338 |
* @return string|void String if retrieving. |
0 | 2339 |
*/ |
2340 |
function the_date( $d = '', $before = '', $after = '', $echo = true ) { |
|
2341 |
global $currentday, $previousday; |
|
5 | 2342 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2343 |
if ( is_new_day() ) { |
9 | 2344 |
$the_date = $before . get_the_date( $d ) . $after; |
0 | 2345 |
$previousday = $currentday; |
2346 |
||
5 | 2347 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2348 |
* Filters the date a post was published for display. |
5 | 2349 |
* |
2350 |
* @since 0.71 |
|
2351 |
* |
|
2352 |
* @param string $the_date The formatted date string. |
|
2353 |
* @param string $d PHP date format. Defaults to 'date_format' option |
|
2354 |
* if not specified. |
|
2355 |
* @param string $before HTML output before the date. |
|
2356 |
* @param string $after HTML output after the date. |
|
2357 |
*/ |
|
2358 |
$the_date = apply_filters( 'the_date', $the_date, $d, $before, $after ); |
|
0 | 2359 |
|
9 | 2360 |
if ( $echo ) { |
0 | 2361 |
echo $the_date; |
9 | 2362 |
} else { |
0 | 2363 |
return $the_date; |
9 | 2364 |
} |
0 | 2365 |
} |
2366 |
} |
|
2367 |
||
2368 |
/** |
|
5 | 2369 |
* Retrieve the date on which the post was written. |
0 | 2370 |
* |
2371 |
* Unlike the_date() this function will always return the date. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2372 |
* Modify output with the {@see 'get_the_date'} filter. |
0 | 2373 |
* |
2374 |
* @since 3.0.0 |
|
2375 |
* |
|
5 | 2376 |
* @param string $d Optional. PHP date format defaults to the date_format option if not specified. |
2377 |
* @param int|WP_Post $post Optional. Post ID or WP_Post object. Default current post. |
|
2378 |
* @return false|string Date the current post was written. False on failure. |
|
0 | 2379 |
*/ |
5 | 2380 |
function get_the_date( $d = '', $post = null ) { |
2381 |
$post = get_post( $post ); |
|
2382 |
||
2383 |
if ( ! $post ) { |
|
2384 |
return false; |
|
2385 |
} |
|
0 | 2386 |
|
5 | 2387 |
if ( '' == $d ) { |
9 | 2388 |
$the_date = get_post_time( get_option( 'date_format' ), false, $post, true ); |
5 | 2389 |
} else { |
9 | 2390 |
$the_date = get_post_time( $d, false, $post, true ); |
5 | 2391 |
} |
0 | 2392 |
|
5 | 2393 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2394 |
* Filters the date a post was published. |
5 | 2395 |
* |
2396 |
* @since 3.0.0 |
|
2397 |
* |
|
2398 |
* @param string $the_date The formatted date. |
|
2399 |
* @param string $d PHP date format. Defaults to 'date_format' option |
|
2400 |
* if not specified. |
|
2401 |
* @param int|WP_Post $post The post object or ID. |
|
2402 |
*/ |
|
2403 |
return apply_filters( 'get_the_date', $the_date, $d, $post ); |
|
0 | 2404 |
} |
2405 |
||
2406 |
/** |
|
2407 |
* Display the date on which the post was last modified. |
|
2408 |
* |
|
2409 |
* @since 2.1.0 |
|
2410 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2411 |
* @param string $d Optional. PHP date format defaults to the date_format option if not specified. |
0 | 2412 |
* @param string $before Optional. Output before the date. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2413 |
* @param string $after Optional. Output after the date. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2414 |
* @param bool $echo Optional, default is display. Whether to echo the date or return it. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2415 |
* @return string|void String if retrieving. |
0 | 2416 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2417 |
function the_modified_date( $d = '', $before = '', $after = '', $echo = true ) { |
9 | 2418 |
$the_modified_date = $before . get_the_modified_date( $d ) . $after; |
5 | 2419 |
|
2420 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2421 |
* Filters the date a post was last modified for display. |
5 | 2422 |
* |
2423 |
* @since 2.1.0 |
|
2424 |
* |
|
2425 |
* @param string $the_modified_date The last modified date. |
|
2426 |
* @param string $d PHP date format. Defaults to 'date_format' option |
|
2427 |
* if not specified. |
|
2428 |
* @param string $before HTML output before the date. |
|
2429 |
* @param string $after HTML output after the date. |
|
2430 |
*/ |
|
2431 |
$the_modified_date = apply_filters( 'the_modified_date', $the_modified_date, $d, $before, $after ); |
|
0 | 2432 |
|
9 | 2433 |
if ( $echo ) { |
0 | 2434 |
echo $the_modified_date; |
9 | 2435 |
} else { |
0 | 2436 |
return $the_modified_date; |
9 | 2437 |
} |
0 | 2438 |
|
2439 |
} |
|
2440 |
||
2441 |
/** |
|
2442 |
* Retrieve the date on which the post was last modified. |
|
2443 |
* |
|
2444 |
* @since 2.1.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2445 |
* @since 4.6.0 Added the `$post` parameter. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2446 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2447 |
* @param string $d Optional. PHP date format defaults to the date_format option if not specified. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2448 |
* @param int|WP_Post $post Optional. Post ID or WP_Post object. Default current post. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2449 |
* @return false|string Date the current post was modified. False on failure. |
0 | 2450 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2451 |
function get_the_modified_date( $d = '', $post = null ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2452 |
$post = get_post( $post ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2453 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2454 |
if ( ! $post ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2455 |
// For backward compatibility, failures go through the filter below. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2456 |
$the_time = false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2457 |
} elseif ( empty( $d ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2458 |
$the_time = get_post_modified_time( get_option( 'date_format' ), false, $post, true ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2459 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2460 |
$the_time = get_post_modified_time( $d, false, $post, true ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2461 |
} |
5 | 2462 |
|
2463 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2464 |
* Filters the date a post was last modified. |
5 | 2465 |
* |
2466 |
* @since 2.1.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2467 |
* @since 4.6.0 Added the `$post` parameter. |
5 | 2468 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2469 |
* @param string|bool $the_time The formatted date or false if no post is found. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2470 |
* @param string $d PHP date format. Defaults to value specified in |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2471 |
* 'date_format' option. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2472 |
* @param WP_Post|null $post WP_Post object or null if no post is found. |
5 | 2473 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2474 |
return apply_filters( 'get_the_modified_date', $the_time, $d, $post ); |
0 | 2475 |
} |
2476 |
||
2477 |
/** |
|
2478 |
* Display the time at which the post was written. |
|
2479 |
* |
|
2480 |
* @since 0.71 |
|
2481 |
* |
|
2482 |
* @param string $d Either 'G', 'U', or php date format. |
|
2483 |
*/ |
|
2484 |
function the_time( $d = '' ) { |
|
5 | 2485 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2486 |
* Filters the time a post was written for display. |
5 | 2487 |
* |
2488 |
* @since 0.71 |
|
2489 |
* |
|
2490 |
* @param string $get_the_time The formatted time. |
|
2491 |
* @param string $d The time format. Accepts 'G', 'U', |
|
2492 |
* or php date format. |
|
2493 |
*/ |
|
2494 |
echo apply_filters( 'the_time', get_the_time( $d ), $d ); |
|
0 | 2495 |
} |
2496 |
||
2497 |
/** |
|
2498 |
* Retrieve the time at which the post was written. |
|
2499 |
* |
|
2500 |
* @since 1.5.0 |
|
2501 |
* |
|
5 | 2502 |
* @param string $d Optional. Format to use for retrieving the time the post |
2503 |
* was written. Either 'G', 'U', or php date format defaults |
|
2504 |
* to the value specified in the time_format option. Default empty. |
|
2505 |
* @param int|WP_Post $post WP_Post object or ID. Default is global $post object. |
|
9 | 2506 |
* @return string|int|false Formatted date string or Unix timestamp if `$d` is 'U' or 'G'. False on failure. |
0 | 2507 |
*/ |
2508 |
function get_the_time( $d = '', $post = null ) { |
|
9 | 2509 |
$post = get_post( $post ); |
0 | 2510 |
|
5 | 2511 |
if ( ! $post ) { |
2512 |
return false; |
|
2513 |
} |
|
2514 |
||
9 | 2515 |
if ( '' == $d ) { |
2516 |
$the_time = get_post_time( get_option( 'time_format' ), false, $post, true ); |
|
2517 |
} else { |
|
2518 |
$the_time = get_post_time( $d, false, $post, true ); |
|
2519 |
} |
|
5 | 2520 |
|
2521 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2522 |
* Filters the time a post was written. |
5 | 2523 |
* |
2524 |
* @since 1.5.0 |
|
2525 |
* |
|
2526 |
* @param string $the_time The formatted time. |
|
2527 |
* @param string $d Format to use for retrieving the time the post was written. |
|
2528 |
* Accepts 'G', 'U', or php date format value specified |
|
2529 |
* in 'time_format' option. Default empty. |
|
2530 |
* @param int|WP_Post $post WP_Post object or ID. |
|
2531 |
*/ |
|
2532 |
return apply_filters( 'get_the_time', $the_time, $d, $post ); |
|
0 | 2533 |
} |
2534 |
||
2535 |
/** |
|
2536 |
* Retrieve the time at which the post was written. |
|
2537 |
* |
|
2538 |
* @since 2.0.0 |
|
2539 |
* |
|
5 | 2540 |
* @param string $d Optional. Format to use for retrieving the time the post |
2541 |
* was written. Either 'G', 'U', or php date format. Default 'U'. |
|
2542 |
* @param bool $gmt Optional. Whether to retrieve the GMT time. Default false. |
|
2543 |
* @param int|WP_Post $post WP_Post object or ID. Default is global $post object. |
|
2544 |
* @param bool $translate Whether to translate the time string. Default false. |
|
9 | 2545 |
* @return string|int|false Formatted date string or Unix timestamp if `$d` is 'U' or 'G'. False on failure. |
0 | 2546 |
*/ |
5 | 2547 |
function get_post_time( $d = 'U', $gmt = false, $post = null, $translate = false ) { |
9 | 2548 |
$post = get_post( $post ); |
0 | 2549 |
|
5 | 2550 |
if ( ! $post ) { |
2551 |
return false; |
|
2552 |
} |
|
2553 |
||
9 | 2554 |
if ( $gmt ) { |
0 | 2555 |
$time = $post->post_date_gmt; |
9 | 2556 |
} else { |
0 | 2557 |
$time = $post->post_date; |
9 | 2558 |
} |
2559 |
||
2560 |
$time = mysql2date( $d, $time, $translate ); |
|
5 | 2561 |
|
2562 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2563 |
* Filters the localized time a post was written. |
5 | 2564 |
* |
2565 |
* @since 2.6.0 |
|
2566 |
* |
|
2567 |
* @param string $time The formatted time. |
|
2568 |
* @param string $d Format to use for retrieving the time the post was written. |
|
2569 |
* Accepts 'G', 'U', or php date format. Default 'U'. |
|
2570 |
* @param bool $gmt Whether to retrieve the GMT time. Default false. |
|
2571 |
*/ |
|
2572 |
return apply_filters( 'get_post_time', $time, $d, $gmt ); |
|
0 | 2573 |
} |
2574 |
||
2575 |
/** |
|
2576 |
* Display the time at which the post was last modified. |
|
2577 |
* |
|
2578 |
* @since 2.0.0 |
|
2579 |
* |
|
2580 |
* @param string $d Optional Either 'G', 'U', or php date format defaults to the value specified in the time_format option. |
|
2581 |
*/ |
|
9 | 2582 |
function the_modified_time( $d = '' ) { |
5 | 2583 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2584 |
* Filters the localized time a post was last modified, for display. |
5 | 2585 |
* |
2586 |
* @since 2.0.0 |
|
2587 |
* |
|
2588 |
* @param string $get_the_modified_time The formatted time. |
|
2589 |
* @param string $d The time format. Accepts 'G', 'U', |
|
2590 |
* or php date format. Defaults to value |
|
2591 |
* specified in 'time_format' option. |
|
2592 |
*/ |
|
9 | 2593 |
echo apply_filters( 'the_modified_time', get_the_modified_time( $d ), $d ); |
0 | 2594 |
} |
2595 |
||
2596 |
/** |
|
2597 |
* Retrieve the time at which the post was last modified. |
|
2598 |
* |
|
2599 |
* @since 2.0.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2600 |
* @since 4.6.0 Added the `$post` parameter. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2601 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2602 |
* @param string $d Optional. Format to use for retrieving the time the post |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2603 |
* was modified. Either 'G', 'U', or php date format defaults |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2604 |
* to the value specified in the time_format option. Default empty. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2605 |
* @param int|WP_Post $post Optional. Post ID or WP_Post object. Default current post. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2606 |
* @return false|string Formatted date string or Unix timestamp. False on failure. |
0 | 2607 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2608 |
function get_the_modified_time( $d = '', $post = null ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2609 |
$post = get_post( $post ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2610 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2611 |
if ( ! $post ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2612 |
// For backward compatibility, failures go through the filter below. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2613 |
$the_time = false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2614 |
} elseif ( empty( $d ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2615 |
$the_time = get_post_modified_time( get_option( 'time_format' ), false, $post, true ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2616 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2617 |
$the_time = get_post_modified_time( $d, false, $post, true ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2618 |
} |
5 | 2619 |
|
2620 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2621 |
* Filters the localized time a post was last modified. |
5 | 2622 |
* |
2623 |
* @since 2.0.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2624 |
* @since 4.6.0 Added the `$post` parameter. |
5 | 2625 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2626 |
* @param string|bool $the_time The formatted time or false if no post is found. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2627 |
* @param string $d Format to use for retrieving the time the post was |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2628 |
* written. Accepts 'G', 'U', or php date format. Defaults |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2629 |
* to value specified in 'time_format' option. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2630 |
* @param WP_Post|null $post WP_Post object or null if no post is found. |
5 | 2631 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2632 |
return apply_filters( 'get_the_modified_time', $the_time, $d, $post ); |
0 | 2633 |
} |
2634 |
||
2635 |
/** |
|
2636 |
* Retrieve the time at which the post was last modified. |
|
2637 |
* |
|
2638 |
* @since 2.0.0 |
|
2639 |
* |
|
5 | 2640 |
* @param string $d Optional. Format to use for retrieving the time the post |
2641 |
* was modified. Either 'G', 'U', or php date format. Default 'U'. |
|
2642 |
* @param bool $gmt Optional. Whether to retrieve the GMT time. Default false. |
|
2643 |
* @param int|WP_Post $post WP_Post object or ID. Default is global $post object. |
|
2644 |
* @param bool $translate Whether to translate the time string. Default false. |
|
9 | 2645 |
* @return string|int|false Formatted date string or Unix timestamp if `$d` is 'U' or 'G'. False on failure. |
0 | 2646 |
*/ |
2647 |
function get_post_modified_time( $d = 'U', $gmt = false, $post = null, $translate = false ) { |
|
9 | 2648 |
$post = get_post( $post ); |
0 | 2649 |
|
5 | 2650 |
if ( ! $post ) { |
2651 |
return false; |
|
2652 |
} |
|
2653 |
||
9 | 2654 |
if ( $gmt ) { |
0 | 2655 |
$time = $post->post_modified_gmt; |
9 | 2656 |
} else { |
0 | 2657 |
$time = $post->post_modified; |
9 | 2658 |
} |
2659 |
$time = mysql2date( $d, $time, $translate ); |
|
0 | 2660 |
|
5 | 2661 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2662 |
* Filters the localized time a post was last modified. |
5 | 2663 |
* |
2664 |
* @since 2.8.0 |
|
2665 |
* |
|
2666 |
* @param string $time The formatted time. |
|
2667 |
* @param string $d The date format. Accepts 'G', 'U', or php date format. Default 'U'. |
|
2668 |
* @param bool $gmt Whether to return the GMT time. Default false. |
|
2669 |
*/ |
|
2670 |
return apply_filters( 'get_post_modified_time', $time, $d, $gmt ); |
|
0 | 2671 |
} |
2672 |
||
2673 |
/** |
|
2674 |
* Display the weekday on which the post was written. |
|
2675 |
* |
|
2676 |
* @since 0.71 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2677 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2678 |
* @global WP_Locale $wp_locale |
0 | 2679 |
*/ |
2680 |
function the_weekday() { |
|
2681 |
global $wp_locale; |
|
2682 |
$the_weekday = $wp_locale->get_weekday( mysql2date( 'w', get_post()->post_date, false ) ); |
|
5 | 2683 |
|
2684 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2685 |
* Filters the weekday on which the post was written, for display. |
5 | 2686 |
* |
2687 |
* @since 0.71 |
|
2688 |
* |
|
2689 |
* @param string $the_weekday |
|
2690 |
*/ |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2691 |
echo apply_filters( 'the_weekday', $the_weekday ); |
0 | 2692 |
} |
2693 |
||
2694 |
/** |
|
2695 |
* Display the weekday on which the post was written. |
|
2696 |
* |
|
2697 |
* Will only output the weekday if the current post's weekday is different from |
|
2698 |
* the previous one output. |
|
2699 |
* |
|
2700 |
* @since 0.71 |
|
2701 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2702 |
* @global WP_Locale $wp_locale |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2703 |
* @global string|int|bool $currentday |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2704 |
* @global string|int|bool $previousweekday |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2705 |
* |
0 | 2706 |
* @param string $before Optional Output before the date. |
2707 |
* @param string $after Optional Output after the date. |
|
2708 |
*/ |
|
9 | 2709 |
function the_weekday_date( $before = '', $after = '' ) { |
0 | 2710 |
global $wp_locale, $currentday, $previousweekday; |
2711 |
$the_weekday_date = ''; |
|
2712 |
if ( $currentday != $previousweekday ) { |
|
2713 |
$the_weekday_date .= $before; |
|
2714 |
$the_weekday_date .= $wp_locale->get_weekday( mysql2date( 'w', get_post()->post_date, false ) ); |
|
2715 |
$the_weekday_date .= $after; |
|
9 | 2716 |
$previousweekday = $currentday; |
0 | 2717 |
} |
5 | 2718 |
|
2719 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2720 |
* Filters the localized date on which the post was written, for display. |
5 | 2721 |
* |
2722 |
* @since 0.71 |
|
2723 |
* |
|
2724 |
* @param string $the_weekday_date |
|
2725 |
* @param string $before The HTML to output before the date. |
|
2726 |
* @param string $after The HTML to output after the date. |
|
2727 |
*/ |
|
2728 |
$the_weekday_date = apply_filters( 'the_weekday_date', $the_weekday_date, $before, $after ); |
|
0 | 2729 |
echo $the_weekday_date; |
2730 |
} |
|
2731 |
||
2732 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2733 |
* Fire the wp_head action. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2734 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2735 |
* See {@see 'wp_head'}. |
0 | 2736 |
* |
2737 |
* @since 1.2.0 |
|
2738 |
*/ |
|
2739 |
function wp_head() { |
|
5 | 2740 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2741 |
* Prints scripts or data in the head tag on the front end. |
5 | 2742 |
* |
2743 |
* @since 1.5.0 |
|
2744 |
*/ |
|
2745 |
do_action( 'wp_head' ); |
|
0 | 2746 |
} |
2747 |
||
2748 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2749 |
* Fire the wp_footer action. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2750 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2751 |
* See {@see 'wp_footer'}. |
0 | 2752 |
* |
2753 |
* @since 1.5.1 |
|
2754 |
*/ |
|
2755 |
function wp_footer() { |
|
5 | 2756 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2757 |
* Prints scripts or data before the closing body tag on the front end. |
5 | 2758 |
* |
2759 |
* @since 1.5.1 |
|
2760 |
*/ |
|
2761 |
do_action( 'wp_footer' ); |
|
0 | 2762 |
} |
2763 |
||
2764 |
/** |
|
9 | 2765 |
* Fire the wp_body_open action. |
2766 |
* |
|
2767 |
* * See {@see 'wp_body_open'}. |
|
2768 |
* |
|
2769 |
* @since 5.2.0 |
|
2770 |
*/ |
|
2771 |
function wp_body_open() { |
|
2772 |
/** |
|
2773 |
* Triggered after the opening <body> tag. |
|
2774 |
* |
|
2775 |
* @since 5.2.0 |
|
2776 |
*/ |
|
2777 |
do_action( 'wp_body_open' ); |
|
2778 |
} |
|
2779 |
||
2780 |
/** |
|
0 | 2781 |
* Display the links to the general feeds. |
2782 |
* |
|
2783 |
* @since 2.8.0 |
|
2784 |
* |
|
2785 |
* @param array $args Optional arguments. |
|
2786 |
*/ |
|
2787 |
function feed_links( $args = array() ) { |
|
9 | 2788 |
if ( ! current_theme_supports( 'automatic-feed-links' ) ) { |
0 | 2789 |
return; |
9 | 2790 |
} |
0 | 2791 |
|
2792 |
$defaults = array( |
|
2793 |
/* translators: Separator between blog name and feed type in feed links */ |
|
9 | 2794 |
'separator' => _x( '»', 'feed link' ), |
0 | 2795 |
/* translators: 1: blog title, 2: separator (raquo) */ |
9 | 2796 |
'feedtitle' => __( '%1$s %2$s Feed' ), |
0 | 2797 |
/* translators: 1: blog title, 2: separator (raquo) */ |
9 | 2798 |
'comstitle' => __( '%1$s %2$s Comments Feed' ), |
0 | 2799 |
); |
2800 |
||
2801 |
$args = wp_parse_args( $args, $defaults ); |
|
2802 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2803 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2804 |
* Filters whether to display the posts feed link. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2805 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2806 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2807 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2808 |
* @param bool $show Whether to display the posts feed link. Default true. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2809 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2810 |
if ( apply_filters( 'feed_links_show_posts_feed', true ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2811 |
echo '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr( sprintf( $args['feedtitle'], get_bloginfo( 'name' ), $args['separator'] ) ) . '" href="' . esc_url( get_feed_link() ) . "\" />\n"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2812 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2813 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2814 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2815 |
* Filters whether to display the comments feed link. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2816 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2817 |
* @since 4.4.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2818 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2819 |
* @param bool $show Whether to display the comments feed link. Default true. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2820 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2821 |
if ( apply_filters( 'feed_links_show_comments_feed', true ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2822 |
echo '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr( sprintf( $args['comstitle'], get_bloginfo( 'name' ), $args['separator'] ) ) . '" href="' . esc_url( get_feed_link( 'comments_' . get_default_feed() ) ) . "\" />\n"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2823 |
} |
0 | 2824 |
} |
2825 |
||
2826 |
/** |
|
2827 |
* Display the links to the extra feeds such as category feeds. |
|
2828 |
* |
|
2829 |
* @since 2.8.0 |
|
2830 |
* |
|
2831 |
* @param array $args Optional arguments. |
|
2832 |
*/ |
|
2833 |
function feed_links_extra( $args = array() ) { |
|
2834 |
$defaults = array( |
|
2835 |
/* translators: Separator between blog name and feed type in feed links */ |
|
9 | 2836 |
'separator' => _x( '»', 'feed link' ), |
0 | 2837 |
/* translators: 1: blog name, 2: separator(raquo), 3: post title */ |
9 | 2838 |
'singletitle' => __( '%1$s %2$s %3$s Comments Feed' ), |
0 | 2839 |
/* translators: 1: blog name, 2: separator(raquo), 3: category name */ |
9 | 2840 |
'cattitle' => __( '%1$s %2$s %3$s Category Feed' ), |
0 | 2841 |
/* translators: 1: blog name, 2: separator(raquo), 3: tag name */ |
9 | 2842 |
'tagtitle' => __( '%1$s %2$s %3$s Tag Feed' ), |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2843 |
/* translators: 1: blog name, 2: separator(raquo), 3: term name, 4: taxonomy singular name */ |
9 | 2844 |
'taxtitle' => __( '%1$s %2$s %3$s %4$s Feed' ), |
0 | 2845 |
/* translators: 1: blog name, 2: separator(raquo), 3: author name */ |
9 | 2846 |
'authortitle' => __( '%1$s %2$s Posts by %3$s Feed' ), |
0 | 2847 |
/* translators: 1: blog name, 2: separator(raquo), 3: search phrase */ |
9 | 2848 |
'searchtitle' => __( '%1$s %2$s Search Results for “%3$s” Feed' ), |
0 | 2849 |
/* translators: 1: blog name, 2: separator(raquo), 3: post type name */ |
9 | 2850 |
'posttypetitle' => __( '%1$s %2$s %3$s Feed' ), |
0 | 2851 |
); |
2852 |
||
2853 |
$args = wp_parse_args( $args, $defaults ); |
|
2854 |
||
2855 |
if ( is_singular() ) { |
|
9 | 2856 |
$id = 0; |
0 | 2857 |
$post = get_post( $id ); |
2858 |
||
2859 |
if ( comments_open() || pings_open() || $post->comment_count > 0 ) { |
|
9 | 2860 |
$title = sprintf( $args['singletitle'], get_bloginfo( 'name' ), $args['separator'], the_title_attribute( array( 'echo' => false ) ) ); |
2861 |
$href = get_post_comments_feed_link( $post->ID ); |
|
0 | 2862 |
} |
2863 |
} elseif ( is_post_type_archive() ) { |
|
2864 |
$post_type = get_query_var( 'post_type' ); |
|
9 | 2865 |
if ( is_array( $post_type ) ) { |
0 | 2866 |
$post_type = reset( $post_type ); |
9 | 2867 |
} |
0 | 2868 |
|
2869 |
$post_type_obj = get_post_type_object( $post_type ); |
|
9 | 2870 |
$title = sprintf( $args['posttypetitle'], get_bloginfo( 'name' ), $args['separator'], $post_type_obj->labels->name ); |
2871 |
$href = get_post_type_archive_feed_link( $post_type_obj->name ); |
|
0 | 2872 |
} elseif ( is_category() ) { |
2873 |
$term = get_queried_object(); |
|
2874 |
||
2875 |
if ( $term ) { |
|
9 | 2876 |
$title = sprintf( $args['cattitle'], get_bloginfo( 'name' ), $args['separator'], $term->name ); |
2877 |
$href = get_category_feed_link( $term->term_id ); |
|
0 | 2878 |
} |
2879 |
} elseif ( is_tag() ) { |
|
2880 |
$term = get_queried_object(); |
|
2881 |
||
2882 |
if ( $term ) { |
|
9 | 2883 |
$title = sprintf( $args['tagtitle'], get_bloginfo( 'name' ), $args['separator'], $term->name ); |
2884 |
$href = get_tag_feed_link( $term->term_id ); |
|
0 | 2885 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2886 |
} elseif ( is_tax() ) { |
9 | 2887 |
$term = get_queried_object(); |
2888 |
$tax = get_taxonomy( $term->taxonomy ); |
|
2889 |
$title = sprintf( $args['taxtitle'], get_bloginfo( 'name' ), $args['separator'], $term->name, $tax->labels->singular_name ); |
|
2890 |
$href = get_term_feed_link( $term->term_id, $term->taxonomy ); |
|
0 | 2891 |
} elseif ( is_author() ) { |
9 | 2892 |
$author_id = intval( get_query_var( 'author' ) ); |
2893 |
||
2894 |
$title = sprintf( $args['authortitle'], get_bloginfo( 'name' ), $args['separator'], get_the_author_meta( 'display_name', $author_id ) ); |
|
2895 |
$href = get_author_feed_link( $author_id ); |
|
0 | 2896 |
} elseif ( is_search() ) { |
9 | 2897 |
$title = sprintf( $args['searchtitle'], get_bloginfo( 'name' ), $args['separator'], get_search_query( false ) ); |
2898 |
$href = get_search_feed_link(); |
|
0 | 2899 |
} elseif ( is_post_type_archive() ) { |
9 | 2900 |
$title = sprintf( $args['posttypetitle'], get_bloginfo( 'name' ), $args['separator'], post_type_archive_title( '', false ) ); |
0 | 2901 |
$post_type_obj = get_queried_object(); |
9 | 2902 |
if ( $post_type_obj ) { |
0 | 2903 |
$href = get_post_type_archive_feed_link( $post_type_obj->name ); |
9 | 2904 |
} |
0 | 2905 |
} |
2906 |
||
9 | 2907 |
if ( isset( $title ) && isset( $href ) ) { |
0 | 2908 |
echo '<link rel="alternate" type="' . feed_content_type() . '" title="' . esc_attr( $title ) . '" href="' . esc_url( $href ) . '" />' . "\n"; |
9 | 2909 |
} |
0 | 2910 |
} |
2911 |
||
2912 |
/** |
|
2913 |
* Display the link to the Really Simple Discovery service endpoint. |
|
2914 |
* |
|
2915 |
* @link http://archipelago.phrasewise.com/rsd |
|
2916 |
* @since 2.0.0 |
|
2917 |
*/ |
|
2918 |
function rsd_link() { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2919 |
echo '<link rel="EditURI" type="application/rsd+xml" title="RSD" href="' . esc_url( site_url( 'xmlrpc.php?rsd', 'rpc' ) ) . '" />' . "\n"; |
0 | 2920 |
} |
2921 |
||
2922 |
/** |
|
2923 |
* Display the link to the Windows Live Writer manifest file. |
|
2924 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2925 |
* @link https://msdn.microsoft.com/en-us/library/bb463265.aspx |
0 | 2926 |
* @since 2.3.1 |
2927 |
*/ |
|
2928 |
function wlwmanifest_link() { |
|
5 | 2929 |
echo '<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="', |
2930 |
includes_url( 'wlwmanifest.xml' ), '" /> ', "\n"; |
|
0 | 2931 |
} |
2932 |
||
2933 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2934 |
* Displays a noindex meta tag if required by the blog configuration. |
0 | 2935 |
* |
2936 |
* If a blog is marked as not being public then the noindex meta tag will be |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2937 |
* output to tell web robots not to index the page content. Add this to the |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2938 |
* {@see 'wp_head'} action. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2939 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2940 |
* Typical usage is as a {@see 'wp_head'} callback: |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2941 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2942 |
* add_action( 'wp_head', 'noindex' ); |
0 | 2943 |
* |
2944 |
* @see wp_no_robots |
|
2945 |
* |
|
2946 |
* @since 2.1.0 |
|
2947 |
*/ |
|
2948 |
function noindex() { |
|
2949 |
// If the blog is not public, tell robots to go away. |
|
9 | 2950 |
if ( '0' == get_option( 'blog_public' ) ) { |
0 | 2951 |
wp_no_robots(); |
9 | 2952 |
} |
0 | 2953 |
} |
2954 |
||
2955 |
/** |
|
2956 |
* Display a noindex meta tag. |
|
2957 |
* |
|
2958 |
* Outputs a noindex meta tag that tells web robots not to index the page content. |
|
2959 |
* Typical usage is as a wp_head callback. add_action( 'wp_head', 'wp_no_robots' ); |
|
2960 |
* |
|
2961 |
* @since 3.3.0 |
|
2962 |
*/ |
|
2963 |
function wp_no_robots() { |
|
5 | 2964 |
echo "<meta name='robots' content='noindex,follow' />\n"; |
0 | 2965 |
} |
2966 |
||
2967 |
/** |
|
9 | 2968 |
* Display a noindex,noarchive meta tag and referrer origin-when-cross-origin meta tag. |
2969 |
* |
|
2970 |
* Outputs a noindex,noarchive meta tag that tells web robots not to index or cache the page content. |
|
2971 |
* Outputs a referrer origin-when-cross-origin meta tag that tells the browser not to send the full |
|
2972 |
* url as a referrer to other sites when cross-origin assets are loaded. |
|
2973 |
* |
|
2974 |
* Typical usage is as a wp_head callback. add_action( 'wp_head', 'wp_sensitive_page_meta' ); |
|
2975 |
* |
|
2976 |
* @since 5.0.1 |
|
2977 |
*/ |
|
2978 |
function wp_sensitive_page_meta() { |
|
2979 |
?> |
|
2980 |
<meta name='robots' content='noindex,noarchive' /> |
|
2981 |
<meta name='referrer' content='strict-origin-when-cross-origin' /> |
|
2982 |
<?php |
|
2983 |
} |
|
2984 |
||
2985 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2986 |
* Display site icon meta tags. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2987 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2988 |
* @since 4.3.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2989 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2990 |
* @link https://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#rel-icon HTML5 specification link icon. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2991 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2992 |
function wp_site_icon() { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2993 |
if ( ! has_site_icon() && ! is_customize_preview() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2994 |
return; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2995 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2996 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2997 |
$meta_tags = array(); |
9 | 2998 |
$icon_32 = get_site_icon_url( 32 ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
2999 |
if ( empty( $icon_32 ) && is_customize_preview() ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3000 |
$icon_32 = '/favicon.ico'; // Serve default favicon URL in customizer so element can be updated for preview. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3001 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3002 |
if ( $icon_32 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3003 |
$meta_tags[] = sprintf( '<link rel="icon" href="%s" sizes="32x32" />', esc_url( $icon_32 ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3004 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3005 |
$icon_192 = get_site_icon_url( 192 ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3006 |
if ( $icon_192 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3007 |
$meta_tags[] = sprintf( '<link rel="icon" href="%s" sizes="192x192" />', esc_url( $icon_192 ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3008 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3009 |
$icon_180 = get_site_icon_url( 180 ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3010 |
if ( $icon_180 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3011 |
$meta_tags[] = sprintf( '<link rel="apple-touch-icon-precomposed" href="%s" />', esc_url( $icon_180 ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3012 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3013 |
$icon_270 = get_site_icon_url( 270 ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3014 |
if ( $icon_270 ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3015 |
$meta_tags[] = sprintf( '<meta name="msapplication-TileImage" content="%s" />', esc_url( $icon_270 ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3016 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3017 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3018 |
/** |
9 | 3019 |
* Filters the site icon meta tags, so plugins can add their own. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3020 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3021 |
* @since 4.3.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3022 |
* |
9 | 3023 |
* @param string[] $meta_tags Array of Site Icon meta tags. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3024 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3025 |
$meta_tags = apply_filters( 'site_icon_meta_tags', $meta_tags ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3026 |
$meta_tags = array_filter( $meta_tags ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3027 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3028 |
foreach ( $meta_tags as $meta_tag ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3029 |
echo "$meta_tag\n"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3030 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3031 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3032 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3033 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3034 |
* Prints resource hints to browsers for pre-fetching, pre-rendering |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3035 |
* and pre-connecting to web sites. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3036 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3037 |
* Gives hints to browsers to prefetch specific pages or render them |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3038 |
* in the background, to perform DNS lookups or to begin the connection |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3039 |
* handshake (DNS, TCP, TLS) in the background. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3040 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3041 |
* These performance improving indicators work by using `<link rel"…">`. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3042 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3043 |
* @since 4.6.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3044 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3045 |
function wp_resource_hints() { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3046 |
$hints = array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3047 |
'dns-prefetch' => wp_dependencies_unique_hosts(), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3048 |
'preconnect' => array(), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3049 |
'prefetch' => array(), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3050 |
'prerender' => array(), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3051 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3052 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3053 |
/* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3054 |
* Add DNS prefetch for the Emoji CDN. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3055 |
* The path is removed in the foreach loop below. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3056 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3057 |
/** This filter is documented in wp-includes/formatting.php */ |
9 | 3058 |
$hints['dns-prefetch'][] = apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/12.0.0-1/svg/' ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3059 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3060 |
foreach ( $hints as $relation_type => $urls ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3061 |
$unique_urls = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3062 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3063 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3064 |
* Filters domains and URLs for resource hints of relation type. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3065 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3066 |
* @since 4.6.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3067 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3068 |
* @param array $urls URLs to print for resource hints. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3069 |
* @param string $relation_type The relation type the URLs are printed for, e.g. 'preconnect' or 'prerender'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3070 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3071 |
$urls = apply_filters( 'wp_resource_hints', $urls, $relation_type ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3072 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3073 |
foreach ( $urls as $key => $url ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3074 |
$atts = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3075 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3076 |
if ( is_array( $url ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3077 |
if ( isset( $url['href'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3078 |
$atts = $url; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3079 |
$url = $url['href']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3080 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3081 |
continue; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3082 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3083 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3084 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3085 |
$url = esc_url( $url, array( 'http', 'https' ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3086 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3087 |
if ( ! $url ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3088 |
continue; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3089 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3090 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3091 |
if ( isset( $unique_urls[ $url ] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3092 |
continue; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3093 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3094 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3095 |
if ( in_array( $relation_type, array( 'preconnect', 'dns-prefetch' ) ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3096 |
$parsed = wp_parse_url( $url ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3097 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3098 |
if ( empty( $parsed['host'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3099 |
continue; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3100 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3101 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3102 |
if ( 'preconnect' === $relation_type && ! empty( $parsed['scheme'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3103 |
$url = $parsed['scheme'] . '://' . $parsed['host']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3104 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3105 |
// Use protocol-relative URLs for dns-prefetch or if scheme is missing. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3106 |
$url = '//' . $parsed['host']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3107 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3108 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3109 |
|
9 | 3110 |
$atts['rel'] = $relation_type; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3111 |
$atts['href'] = $url; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3112 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3113 |
$unique_urls[ $url ] = $atts; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3114 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3115 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3116 |
foreach ( $unique_urls as $atts ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3117 |
$html = ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3118 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3119 |
foreach ( $atts as $attr => $value ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3120 |
if ( ! is_scalar( $value ) || |
9 | 3121 |
( ! in_array( $attr, array( 'as', 'crossorigin', 'href', 'pr', 'rel', 'type' ), true ) && ! is_numeric( $attr ) ) ) { |
3122 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3123 |
continue; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3124 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3125 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3126 |
$value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3127 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3128 |
if ( ! is_string( $attr ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3129 |
$html .= " $value"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3130 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3131 |
$html .= " $attr='$value'"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3132 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3133 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3134 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3135 |
$html = trim( $html ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3136 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3137 |
echo "<link $html />\n"; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3138 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3139 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3140 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3141 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3142 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3143 |
* Retrieves a list of unique hosts of all enqueued scripts and styles. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3144 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3145 |
* @since 4.6.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3146 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3147 |
* @return array A list of unique hosts of enqueued scripts and styles. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3148 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3149 |
function wp_dependencies_unique_hosts() { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3150 |
global $wp_scripts, $wp_styles; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3151 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3152 |
$unique_hosts = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3153 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3154 |
foreach ( array( $wp_scripts, $wp_styles ) as $dependencies ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3155 |
if ( $dependencies instanceof WP_Dependencies && ! empty( $dependencies->queue ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3156 |
foreach ( $dependencies->queue as $handle ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3157 |
if ( ! isset( $dependencies->registered[ $handle ] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3158 |
continue; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3159 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3160 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3161 |
/* @var _WP_Dependency $dependency */ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3162 |
$dependency = $dependencies->registered[ $handle ]; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3163 |
$parsed = wp_parse_url( $dependency->src ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3164 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3165 |
if ( ! empty( $parsed['host'] ) && ! in_array( $parsed['host'], $unique_hosts ) && $parsed['host'] !== $_SERVER['SERVER_NAME'] ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3166 |
$unique_hosts[] = $parsed['host']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3167 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3168 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3169 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3170 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3171 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3172 |
return $unique_hosts; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3173 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3174 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3175 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3176 |
* Whether the user can access the visual editor. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3177 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3178 |
* Checks if the user can access the visual editor and that it's supported by the user's browser. |
0 | 3179 |
* |
3180 |
* @since 2.0.0 |
|
3181 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3182 |
* @global bool $wp_rich_edit Whether the user can access the visual editor. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3183 |
* @global bool $is_gecko Whether the browser is Gecko-based. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3184 |
* @global bool $is_opera Whether the browser is Opera. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3185 |
* @global bool $is_safari Whether the browser is Safari. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3186 |
* @global bool $is_chrome Whether the browser is Chrome. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3187 |
* @global bool $is_IE Whether the browser is Internet Explorer. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3188 |
* @global bool $is_edge Whether the browser is Microsoft Edge. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3189 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3190 |
* @return bool True if the user can access the visual editor, false otherwise. |
0 | 3191 |
*/ |
3192 |
function user_can_richedit() { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3193 |
global $wp_rich_edit, $is_gecko, $is_opera, $is_safari, $is_chrome, $is_IE, $is_edge; |
0 | 3194 |
|
9 | 3195 |
if ( ! isset( $wp_rich_edit ) ) { |
0 | 3196 |
$wp_rich_edit = false; |
3197 |
||
3198 |
if ( get_user_option( 'rich_editing' ) == 'true' || ! is_user_logged_in() ) { // default to 'true' for logged out users |
|
3199 |
if ( $is_safari ) { |
|
3200 |
$wp_rich_edit = ! wp_is_mobile() || ( preg_match( '!AppleWebKit/(\d+)!', $_SERVER['HTTP_USER_AGENT'], $match ) && intval( $match[1] ) >= 534 ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3201 |
} elseif ( $is_IE ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3202 |
$wp_rich_edit = ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Trident/7.0;' ) !== false ); |
9 | 3203 |
} elseif ( $is_gecko || $is_chrome || $is_edge || ( $is_opera && ! wp_is_mobile() ) ) { |
0 | 3204 |
$wp_rich_edit = true; |
3205 |
} |
|
3206 |
} |
|
3207 |
} |
|
3208 |
||
5 | 3209 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3210 |
* Filters whether the user can access the visual editor. |
5 | 3211 |
* |
3212 |
* @since 2.1.0 |
|
3213 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3214 |
* @param bool $wp_rich_edit Whether the user can access the visual editor. |
5 | 3215 |
*/ |
3216 |
return apply_filters( 'user_can_richedit', $wp_rich_edit ); |
|
0 | 3217 |
} |
3218 |
||
3219 |
/** |
|
3220 |
* Find out which editor should be displayed by default. |
|
3221 |
* |
|
3222 |
* Works out which of the two editors to display as the current editor for a |
|
3223 |
* user. The 'html' setting is for the "Text" editor tab. |
|
3224 |
* |
|
3225 |
* @since 2.5.0 |
|
3226 |
* |
|
3227 |
* @return string Either 'tinymce', or 'html', or 'test' |
|
3228 |
*/ |
|
3229 |
function wp_default_editor() { |
|
3230 |
$r = user_can_richedit() ? 'tinymce' : 'html'; // defaults |
|
5 | 3231 |
if ( wp_get_current_user() ) { // look for cookie |
9 | 3232 |
$ed = get_user_setting( 'editor', 'tinymce' ); |
3233 |
$r = ( in_array( $ed, array( 'tinymce', 'html', 'test' ) ) ) ? $ed : $r; |
|
0 | 3234 |
} |
5 | 3235 |
|
3236 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3237 |
* Filters which editor should be displayed by default. |
5 | 3238 |
* |
3239 |
* @since 2.5.0 |
|
3240 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3241 |
* @param string $r Which editor should be displayed by default. Either 'tinymce', 'html', or 'test'. |
5 | 3242 |
*/ |
3243 |
return apply_filters( 'wp_default_editor', $r ); |
|
0 | 3244 |
} |
3245 |
||
3246 |
/** |
|
3247 |
* Renders an editor. |
|
3248 |
* |
|
3249 |
* Using this function is the proper way to output all needed components for both TinyMCE and Quicktags. |
|
5 | 3250 |
* _WP_Editors should not be used directly. See https://core.trac.wordpress.org/ticket/17144. |
0 | 3251 |
* |
3252 |
* NOTE: Once initialized the TinyMCE editor cannot be safely moved in the DOM. For that reason |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3253 |
* running wp_editor() inside of a meta box is not a good idea unless only Quicktags is used. |
0 | 3254 |
* On the post edit screen several actions can be used to include additional editors |
3255 |
* containing TinyMCE: 'edit_page_form', 'edit_form_advanced' and 'dbx_post_sidebar'. |
|
5 | 3256 |
* See https://core.trac.wordpress.org/ticket/19173 for more information. |
0 | 3257 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3258 |
* @see _WP_Editors::editor() |
0 | 3259 |
* @since 3.3.0 |
3260 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3261 |
* @param string $content Initial content for the editor. |
0 | 3262 |
* @param string $editor_id HTML ID attribute value for the textarea and TinyMCE. Can only be /[a-z]+/. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3263 |
* @param array $settings See _WP_Editors::editor(). |
0 | 3264 |
*/ |
3265 |
function wp_editor( $content, $editor_id, $settings = array() ) { |
|
9 | 3266 |
if ( ! class_exists( '_WP_Editors', false ) ) { |
0 | 3267 |
require( ABSPATH . WPINC . '/class-wp-editor.php' ); |
9 | 3268 |
} |
3269 |
_WP_Editors::editor( $content, $editor_id, $settings ); |
|
0 | 3270 |
} |
3271 |
||
3272 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3273 |
* Outputs the editor scripts, stylesheets, and default settings. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3274 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3275 |
* The editor can be initialized when needed after page load. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3276 |
* See wp.editor.initialize() in wp-admin/js/editor.js for initialization options. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3277 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3278 |
* @uses _WP_Editors |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3279 |
* @since 4.8.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3280 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3281 |
function wp_enqueue_editor() { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3282 |
if ( ! class_exists( '_WP_Editors', false ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3283 |
require( ABSPATH . WPINC . '/class-wp-editor.php' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3284 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3285 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3286 |
_WP_Editors::enqueue_default_editor(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3287 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3288 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3289 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3290 |
* Enqueue assets needed by the code editor for the given settings. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3291 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3292 |
* @since 4.9.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3293 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3294 |
* @see wp_enqueue_editor() |
9 | 3295 |
* @see wp_get_code_editor_settings(); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3296 |
* @see _WP_Editors::parse_settings() |
9 | 3297 |
* |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3298 |
* @param array $args { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3299 |
* Args. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3300 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3301 |
* @type string $type The MIME type of the file to be edited. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3302 |
* @type string $file Filename to be edited. Extension is used to sniff the type. Can be supplied as alternative to `$type` param. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3303 |
* @type WP_Theme $theme Theme being edited when on theme editor. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3304 |
* @type string $plugin Plugin being edited when on plugin editor. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3305 |
* @type array $codemirror Additional CodeMirror setting overrides. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3306 |
* @type array $csslint CSSLint rule overrides. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3307 |
* @type array $jshint JSHint rule overrides. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3308 |
* @type array $htmlhint JSHint rule overrides. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3309 |
* } |
9 | 3310 |
* @return array|false Settings for the enqueued code editor, or false if the editor was not enqueued. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3311 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3312 |
function wp_enqueue_code_editor( $args ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3313 |
if ( is_user_logged_in() && 'false' === wp_get_current_user()->syntax_highlighting ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3314 |
return false; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3315 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3316 |
|
9 | 3317 |
$settings = wp_get_code_editor_settings( $args ); |
3318 |
||
3319 |
if ( empty( $settings ) || empty( $settings['codemirror'] ) ) { |
|
3320 |
return false; |
|
3321 |
} |
|
3322 |
||
3323 |
wp_enqueue_script( 'code-editor' ); |
|
3324 |
wp_enqueue_style( 'code-editor' ); |
|
3325 |
||
3326 |
if ( isset( $settings['codemirror']['mode'] ) ) { |
|
3327 |
$mode = $settings['codemirror']['mode']; |
|
3328 |
if ( is_string( $mode ) ) { |
|
3329 |
$mode = array( |
|
3330 |
'name' => $mode, |
|
3331 |
); |
|
3332 |
} |
|
3333 |
||
3334 |
if ( ! empty( $settings['codemirror']['lint'] ) ) { |
|
3335 |
switch ( $mode['name'] ) { |
|
3336 |
case 'css': |
|
3337 |
case 'text/css': |
|
3338 |
case 'text/x-scss': |
|
3339 |
case 'text/x-less': |
|
3340 |
wp_enqueue_script( 'csslint' ); |
|
3341 |
break; |
|
3342 |
case 'htmlmixed': |
|
3343 |
case 'text/html': |
|
3344 |
case 'php': |
|
3345 |
case 'application/x-httpd-php': |
|
3346 |
case 'text/x-php': |
|
3347 |
wp_enqueue_script( 'htmlhint' ); |
|
3348 |
wp_enqueue_script( 'csslint' ); |
|
3349 |
wp_enqueue_script( 'jshint' ); |
|
3350 |
if ( ! current_user_can( 'unfiltered_html' ) ) { |
|
3351 |
wp_enqueue_script( 'htmlhint-kses' ); |
|
3352 |
} |
|
3353 |
break; |
|
3354 |
case 'javascript': |
|
3355 |
case 'application/ecmascript': |
|
3356 |
case 'application/json': |
|
3357 |
case 'application/javascript': |
|
3358 |
case 'application/ld+json': |
|
3359 |
case 'text/typescript': |
|
3360 |
case 'application/typescript': |
|
3361 |
wp_enqueue_script( 'jshint' ); |
|
3362 |
wp_enqueue_script( 'jsonlint' ); |
|
3363 |
break; |
|
3364 |
} |
|
3365 |
} |
|
3366 |
} |
|
3367 |
||
3368 |
wp_add_inline_script( 'code-editor', sprintf( 'jQuery.extend( wp.codeEditor.defaultSettings, %s );', wp_json_encode( $settings ) ) ); |
|
3369 |
||
3370 |
/** |
|
3371 |
* Fires when scripts and styles are enqueued for the code editor. |
|
3372 |
* |
|
3373 |
* @since 4.9.0 |
|
3374 |
* |
|
3375 |
* @param array $settings Settings for the enqueued code editor. |
|
3376 |
*/ |
|
3377 |
do_action( 'wp_enqueue_code_editor', $settings ); |
|
3378 |
||
3379 |
return $settings; |
|
3380 |
} |
|
3381 |
||
3382 |
/** |
|
3383 |
* Generate and return code editor settings. |
|
3384 |
* |
|
3385 |
* @since 5.0.0 |
|
3386 |
* |
|
3387 |
* @see wp_enqueue_code_editor() |
|
3388 |
* |
|
3389 |
* @param array $args { |
|
3390 |
* Args. |
|
3391 |
* |
|
3392 |
* @type string $type The MIME type of the file to be edited. |
|
3393 |
* @type string $file Filename to be edited. Extension is used to sniff the type. Can be supplied as alternative to `$type` param. |
|
3394 |
* @type WP_Theme $theme Theme being edited when on theme editor. |
|
3395 |
* @type string $plugin Plugin being edited when on plugin editor. |
|
3396 |
* @type array $codemirror Additional CodeMirror setting overrides. |
|
3397 |
* @type array $csslint CSSLint rule overrides. |
|
3398 |
* @type array $jshint JSHint rule overrides. |
|
3399 |
* @type array $htmlhint JSHint rule overrides. |
|
3400 |
* } |
|
3401 |
* @return array|false Settings for the code editor. |
|
3402 |
*/ |
|
3403 |
function wp_get_code_editor_settings( $args ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3404 |
$settings = array( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3405 |
'codemirror' => array( |
9 | 3406 |
'indentUnit' => 4, |
3407 |
'indentWithTabs' => true, |
|
3408 |
'inputStyle' => 'contenteditable', |
|
3409 |
'lineNumbers' => true, |
|
3410 |
'lineWrapping' => true, |
|
3411 |
'styleActiveLine' => true, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3412 |
'continueComments' => true, |
9 | 3413 |
'extraKeys' => array( |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3414 |
'Ctrl-Space' => 'autocomplete', |
9 | 3415 |
'Ctrl-/' => 'toggleComment', |
3416 |
'Cmd-/' => 'toggleComment', |
|
3417 |
'Alt-F' => 'findPersistent', |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3418 |
'Ctrl-F' => 'findPersistent', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3419 |
'Cmd-F' => 'findPersistent', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3420 |
), |
9 | 3421 |
'direction' => 'ltr', // Code is shown in LTR even in RTL languages. |
3422 |
'gutters' => array(), |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3423 |
), |
9 | 3424 |
'csslint' => array( |
3425 |
'errors' => true, // Parsing errors. |
|
3426 |
'box-model' => true, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3427 |
'display-property-grouping' => true, |
9 | 3428 |
'duplicate-properties' => true, |
3429 |
'known-properties' => true, |
|
3430 |
'outline-none' => true, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3431 |
), |
9 | 3432 |
'jshint' => array( |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3433 |
// The following are copied from <https://github.com/WordPress/wordpress-develop/blob/4.8.1/.jshintrc>. |
9 | 3434 |
'boss' => true, |
3435 |
'curly' => true, |
|
3436 |
'eqeqeq' => true, |
|
3437 |
'eqnull' => true, |
|
3438 |
'es3' => true, |
|
3439 |
'expr' => true, |
|
3440 |
'immed' => true, |
|
3441 |
'noarg' => true, |
|
3442 |
'nonbsp' => true, |
|
3443 |
'onevar' => true, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3444 |
'quotmark' => 'single', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3445 |
'trailing' => true, |
9 | 3446 |
'undef' => true, |
3447 |
'unused' => true, |
|
3448 |
||
3449 |
'browser' => true, |
|
3450 |
||
3451 |
'globals' => array( |
|
3452 |
'_' => false, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3453 |
'Backbone' => false, |
9 | 3454 |
'jQuery' => false, |
3455 |
'JSON' => false, |
|
3456 |
'wp' => false, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3457 |
), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3458 |
), |
9 | 3459 |
'htmlhint' => array( |
3460 |
'tagname-lowercase' => true, |
|
3461 |
'attr-lowercase' => true, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3462 |
'attr-value-double-quotes' => false, |
9 | 3463 |
'doctype-first' => false, |
3464 |
'tag-pair' => true, |
|
3465 |
'spec-char-escape' => true, |
|
3466 |
'id-unique' => true, |
|
3467 |
'src-not-empty' => true, |
|
3468 |
'attr-no-duplication' => true, |
|
3469 |
'alt-require' => true, |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3470 |
'space-tab-mixed-disabled' => 'tab', |
9 | 3471 |
'attr-unsafe-chars' => true, |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3472 |
), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3473 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3474 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3475 |
$type = ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3476 |
if ( isset( $args['type'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3477 |
$type = $args['type']; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3478 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3479 |
// Remap MIME types to ones that CodeMirror modes will recognize. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3480 |
if ( 'application/x-patch' === $type || 'text/x-patch' === $type ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3481 |
$type = 'text/x-diff'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3482 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3483 |
} elseif ( isset( $args['file'] ) && false !== strpos( basename( $args['file'] ), '.' ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3484 |
$extension = strtolower( pathinfo( $args['file'], PATHINFO_EXTENSION ) ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3485 |
foreach ( wp_get_mime_types() as $exts => $mime ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3486 |
if ( preg_match( '!^(' . $exts . ')$!i', $extension ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3487 |
$type = $mime; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3488 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3489 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3490 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3491 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3492 |
// Supply any types that are not matched by wp_get_mime_types(). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3493 |
if ( empty( $type ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3494 |
switch ( $extension ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3495 |
case 'conf': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3496 |
$type = 'text/nginx'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3497 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3498 |
case 'css': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3499 |
$type = 'text/css'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3500 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3501 |
case 'diff': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3502 |
case 'patch': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3503 |
$type = 'text/x-diff'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3504 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3505 |
case 'html': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3506 |
case 'htm': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3507 |
$type = 'text/html'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3508 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3509 |
case 'http': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3510 |
$type = 'message/http'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3511 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3512 |
case 'js': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3513 |
$type = 'text/javascript'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3514 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3515 |
case 'json': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3516 |
$type = 'application/json'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3517 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3518 |
case 'jsx': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3519 |
$type = 'text/jsx'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3520 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3521 |
case 'less': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3522 |
$type = 'text/x-less'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3523 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3524 |
case 'md': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3525 |
$type = 'text/x-gfm'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3526 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3527 |
case 'php': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3528 |
case 'phtml': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3529 |
case 'php3': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3530 |
case 'php4': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3531 |
case 'php5': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3532 |
case 'php7': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3533 |
case 'phps': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3534 |
$type = 'application/x-httpd-php'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3535 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3536 |
case 'scss': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3537 |
$type = 'text/x-scss'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3538 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3539 |
case 'sass': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3540 |
$type = 'text/x-sass'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3541 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3542 |
case 'sh': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3543 |
case 'bash': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3544 |
$type = 'text/x-sh'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3545 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3546 |
case 'sql': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3547 |
$type = 'text/x-sql'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3548 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3549 |
case 'svg': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3550 |
$type = 'application/svg+xml'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3551 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3552 |
case 'xml': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3553 |
$type = 'text/xml'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3554 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3555 |
case 'yml': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3556 |
case 'yaml': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3557 |
$type = 'text/x-yaml'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3558 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3559 |
case 'txt': |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3560 |
default: |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3561 |
$type = 'text/plain'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3562 |
break; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3563 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3564 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3565 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3566 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3567 |
if ( 'text/css' === $type ) { |
9 | 3568 |
$settings['codemirror'] = array_merge( |
3569 |
$settings['codemirror'], |
|
3570 |
array( |
|
3571 |
'mode' => 'css', |
|
3572 |
'lint' => true, |
|
3573 |
'autoCloseBrackets' => true, |
|
3574 |
'matchBrackets' => true, |
|
3575 |
) |
|
3576 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3577 |
} elseif ( 'text/x-scss' === $type || 'text/x-less' === $type || 'text/x-sass' === $type ) { |
9 | 3578 |
$settings['codemirror'] = array_merge( |
3579 |
$settings['codemirror'], |
|
3580 |
array( |
|
3581 |
'mode' => $type, |
|
3582 |
'lint' => false, |
|
3583 |
'autoCloseBrackets' => true, |
|
3584 |
'matchBrackets' => true, |
|
3585 |
) |
|
3586 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3587 |
} elseif ( 'text/x-diff' === $type ) { |
9 | 3588 |
$settings['codemirror'] = array_merge( |
3589 |
$settings['codemirror'], |
|
3590 |
array( |
|
3591 |
'mode' => 'diff', |
|
3592 |
) |
|
3593 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3594 |
} elseif ( 'text/html' === $type ) { |
9 | 3595 |
$settings['codemirror'] = array_merge( |
3596 |
$settings['codemirror'], |
|
3597 |
array( |
|
3598 |
'mode' => 'htmlmixed', |
|
3599 |
'lint' => true, |
|
3600 |
'autoCloseBrackets' => true, |
|
3601 |
'autoCloseTags' => true, |
|
3602 |
'matchTags' => array( |
|
3603 |
'bothTags' => true, |
|
3604 |
), |
|
3605 |
) |
|
3606 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3607 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3608 |
if ( ! current_user_can( 'unfiltered_html' ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3609 |
$settings['htmlhint']['kses'] = wp_kses_allowed_html( 'post' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3610 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3611 |
} elseif ( 'text/x-gfm' === $type ) { |
9 | 3612 |
$settings['codemirror'] = array_merge( |
3613 |
$settings['codemirror'], |
|
3614 |
array( |
|
3615 |
'mode' => 'gfm', |
|
3616 |
'highlightFormatting' => true, |
|
3617 |
) |
|
3618 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3619 |
} elseif ( 'application/javascript' === $type || 'text/javascript' === $type ) { |
9 | 3620 |
$settings['codemirror'] = array_merge( |
3621 |
$settings['codemirror'], |
|
3622 |
array( |
|
3623 |
'mode' => 'javascript', |
|
3624 |
'lint' => true, |
|
3625 |
'autoCloseBrackets' => true, |
|
3626 |
'matchBrackets' => true, |
|
3627 |
) |
|
3628 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3629 |
} elseif ( false !== strpos( $type, 'json' ) ) { |
9 | 3630 |
$settings['codemirror'] = array_merge( |
3631 |
$settings['codemirror'], |
|
3632 |
array( |
|
3633 |
'mode' => array( |
|
3634 |
'name' => 'javascript', |
|
3635 |
), |
|
3636 |
'lint' => true, |
|
3637 |
'autoCloseBrackets' => true, |
|
3638 |
'matchBrackets' => true, |
|
3639 |
) |
|
3640 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3641 |
if ( 'application/ld+json' === $type ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3642 |
$settings['codemirror']['mode']['jsonld'] = true; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3643 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3644 |
$settings['codemirror']['mode']['json'] = true; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3645 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3646 |
} elseif ( false !== strpos( $type, 'jsx' ) ) { |
9 | 3647 |
$settings['codemirror'] = array_merge( |
3648 |
$settings['codemirror'], |
|
3649 |
array( |
|
3650 |
'mode' => 'jsx', |
|
3651 |
'autoCloseBrackets' => true, |
|
3652 |
'matchBrackets' => true, |
|
3653 |
) |
|
3654 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3655 |
} elseif ( 'text/x-markdown' === $type ) { |
9 | 3656 |
$settings['codemirror'] = array_merge( |
3657 |
$settings['codemirror'], |
|
3658 |
array( |
|
3659 |
'mode' => 'markdown', |
|
3660 |
'highlightFormatting' => true, |
|
3661 |
) |
|
3662 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3663 |
} elseif ( 'text/nginx' === $type ) { |
9 | 3664 |
$settings['codemirror'] = array_merge( |
3665 |
$settings['codemirror'], |
|
3666 |
array( |
|
3667 |
'mode' => 'nginx', |
|
3668 |
) |
|
3669 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3670 |
} elseif ( 'application/x-httpd-php' === $type ) { |
9 | 3671 |
$settings['codemirror'] = array_merge( |
3672 |
$settings['codemirror'], |
|
3673 |
array( |
|
3674 |
'mode' => 'php', |
|
3675 |
'autoCloseBrackets' => true, |
|
3676 |
'autoCloseTags' => true, |
|
3677 |
'matchBrackets' => true, |
|
3678 |
'matchTags' => array( |
|
3679 |
'bothTags' => true, |
|
3680 |
), |
|
3681 |
) |
|
3682 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3683 |
} elseif ( 'text/x-sql' === $type || 'text/x-mysql' === $type ) { |
9 | 3684 |
$settings['codemirror'] = array_merge( |
3685 |
$settings['codemirror'], |
|
3686 |
array( |
|
3687 |
'mode' => 'sql', |
|
3688 |
'autoCloseBrackets' => true, |
|
3689 |
'matchBrackets' => true, |
|
3690 |
) |
|
3691 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3692 |
} elseif ( false !== strpos( $type, 'xml' ) ) { |
9 | 3693 |
$settings['codemirror'] = array_merge( |
3694 |
$settings['codemirror'], |
|
3695 |
array( |
|
3696 |
'mode' => 'xml', |
|
3697 |
'autoCloseBrackets' => true, |
|
3698 |
'autoCloseTags' => true, |
|
3699 |
'matchTags' => array( |
|
3700 |
'bothTags' => true, |
|
3701 |
), |
|
3702 |
) |
|
3703 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3704 |
} elseif ( 'text/x-yaml' === $type ) { |
9 | 3705 |
$settings['codemirror'] = array_merge( |
3706 |
$settings['codemirror'], |
|
3707 |
array( |
|
3708 |
'mode' => 'yaml', |
|
3709 |
) |
|
3710 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3711 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3712 |
$settings['codemirror']['mode'] = $type; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3713 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3714 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3715 |
if ( ! empty( $settings['codemirror']['lint'] ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3716 |
$settings['codemirror']['gutters'][] = 'CodeMirror-lint-markers'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3717 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3718 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3719 |
// Let settings supplied via args override any defaults. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3720 |
foreach ( wp_array_slice_assoc( $args, array( 'codemirror', 'csslint', 'jshint', 'htmlhint' ) ) as $key => $value ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3721 |
$settings[ $key ] = array_merge( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3722 |
$settings[ $key ], |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3723 |
$value |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3724 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3725 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3726 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3727 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3728 |
* Filters settings that are passed into the code editor. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3729 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3730 |
* Returning a falsey value will disable the syntax-highlighting code editor. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3731 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3732 |
* @since 4.9.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3733 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3734 |
* @param array $settings The array of settings passed to the code editor. A falsey value disables the editor. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3735 |
* @param array $args { |
9 | 3736 |
* Args passed when calling `get_code_editor_settings()`. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3737 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3738 |
* @type string $type The MIME type of the file to be edited. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3739 |
* @type string $file Filename being edited. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3740 |
* @type WP_Theme $theme Theme being edited when on theme editor. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3741 |
* @type string $plugin Plugin being edited when on plugin editor. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3742 |
* @type array $codemirror Additional CodeMirror setting overrides. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3743 |
* @type array $csslint CSSLint rule overrides. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3744 |
* @type array $jshint JSHint rule overrides. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3745 |
* @type array $htmlhint JSHint rule overrides. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3746 |
* } |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3747 |
*/ |
9 | 3748 |
return apply_filters( 'wp_code_editor_settings', $settings, $args ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3749 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3750 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3751 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3752 |
* Retrieves the contents of the search WordPress query variable. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3753 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3754 |
* The search query string is passed through esc_attr() to ensure that it is safe |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3755 |
* for placing in an html attribute. |
0 | 3756 |
* |
3757 |
* @since 2.3.0 |
|
3758 |
* |
|
3759 |
* @param bool $escaped Whether the result is escaped. Default true. |
|
9 | 3760 |
* Only use when you are later escaping it. Do not use unescaped. |
0 | 3761 |
* @return string |
3762 |
*/ |
|
3763 |
function get_search_query( $escaped = true ) { |
|
5 | 3764 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3765 |
* Filters the contents of the search query variable. |
5 | 3766 |
* |
3767 |
* @since 2.3.0 |
|
3768 |
* |
|
3769 |
* @param mixed $search Contents of the search query variable. |
|
3770 |
*/ |
|
0 | 3771 |
$query = apply_filters( 'get_search_query', get_query_var( 's' ) ); |
5 | 3772 |
|
9 | 3773 |
if ( $escaped ) { |
0 | 3774 |
$query = esc_attr( $query ); |
9 | 3775 |
} |
0 | 3776 |
return $query; |
3777 |
} |
|
3778 |
||
3779 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3780 |
* Displays the contents of the search query variable. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3781 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3782 |
* The search query string is passed through esc_attr() to ensure that it is safe |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3783 |
* for placing in an html attribute. |
0 | 3784 |
* |
3785 |
* @since 2.1.0 |
|
3786 |
*/ |
|
3787 |
function the_search_query() { |
|
5 | 3788 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3789 |
* Filters the contents of the search query variable for display. |
5 | 3790 |
* |
3791 |
* @since 2.3.0 |
|
3792 |
* |
|
3793 |
* @param mixed $search Contents of the search query variable. |
|
3794 |
*/ |
|
0 | 3795 |
echo esc_attr( apply_filters( 'the_search_query', get_search_query( false ) ) ); |
3796 |
} |
|
3797 |
||
3798 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3799 |
* Gets the language attributes for the html tag. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3800 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3801 |
* Builds up a set of html attributes containing the text direction and language |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3802 |
* information for the page. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3803 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3804 |
* @since 4.3.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3805 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3806 |
* @param string $doctype Optional. The type of html document. Accepts 'xhtml' or 'html'. Default 'html'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3807 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3808 |
function get_language_attributes( $doctype = 'html' ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3809 |
$attributes = array(); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3810 |
|
9 | 3811 |
if ( function_exists( 'is_rtl' ) && is_rtl() ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3812 |
$attributes[] = 'dir="rtl"'; |
9 | 3813 |
} |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3814 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3815 |
if ( $lang = get_bloginfo( 'language' ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3816 |
if ( get_option( 'html_type' ) == 'text/html' || $doctype == 'html' ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3817 |
$attributes[] = 'lang="' . esc_attr( $lang ) . '"'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3818 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3819 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3820 |
if ( get_option( 'html_type' ) != 'text/html' || $doctype == 'xhtml' ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3821 |
$attributes[] = 'xml:lang="' . esc_attr( $lang ) . '"'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3822 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3823 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3824 |
|
9 | 3825 |
$output = implode( ' ', $attributes ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3826 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3827 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3828 |
* Filters the language attributes for display in the html tag. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3829 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3830 |
* @since 2.5.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3831 |
* @since 4.3.0 Added the `$doctype` parameter. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3832 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3833 |
* @param string $output A space-separated list of language attributes. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3834 |
* @param string $doctype The type of html document (xhtml|html). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3835 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3836 |
return apply_filters( 'language_attributes', $output, $doctype ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3837 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3838 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3839 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3840 |
* Displays the language attributes for the html tag. |
0 | 3841 |
* |
3842 |
* Builds up a set of html attributes containing the text direction and language |
|
3843 |
* information for the page. |
|
3844 |
* |
|
3845 |
* @since 2.1.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3846 |
* @since 4.3.0 Converted into a wrapper for get_language_attributes(). |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3847 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3848 |
* @param string $doctype Optional. The type of html document. Accepts 'xhtml' or 'html'. Default 'html'. |
0 | 3849 |
*/ |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3850 |
function language_attributes( $doctype = 'html' ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3851 |
echo get_language_attributes( $doctype ); |
0 | 3852 |
} |
3853 |
||
3854 |
/** |
|
3855 |
* Retrieve paginated link for archive post pages. |
|
3856 |
* |
|
3857 |
* Technically, the function can be used to create paginated link list for any |
|
3858 |
* area. The 'base' argument is used to reference the url, which will be used to |
|
3859 |
* create the paginated links. The 'format' argument is then used for replacing |
|
3860 |
* the page number. It is however, most likely and by default, to be used on the |
|
3861 |
* archive post pages. |
|
3862 |
* |
|
3863 |
* The 'type' argument controls format of the returned value. The default is |
|
3864 |
* 'plain', which is just a string with the links separated by a newline |
|
3865 |
* character. The other possible values are either 'array' or 'list'. The |
|
3866 |
* 'array' value will return an array of the paginated link list to offer full |
|
3867 |
* control of display. The 'list' value will place all of the paginated links in |
|
3868 |
* an unordered HTML list. |
|
3869 |
* |
|
3870 |
* The 'total' argument is the total amount of pages and is an integer. The |
|
3871 |
* 'current' argument is the current page number and is also an integer. |
|
3872 |
* |
|
3873 |
* An example of the 'base' argument is "http://example.com/all_posts.php%_%" |
|
3874 |
* and the '%_%' is required. The '%_%' will be replaced by the contents of in |
|
3875 |
* the 'format' argument. An example for the 'format' argument is "?page=%#%" |
|
3876 |
* and the '%#%' is also required. The '%#%' will be replaced with the page |
|
3877 |
* number. |
|
3878 |
* |
|
3879 |
* You can include the previous and next links in the list by setting the |
|
3880 |
* 'prev_next' argument to true, which it is by default. You can set the |
|
3881 |
* previous text, by using the 'prev_text' argument. You can set the next text |
|
3882 |
* by setting the 'next_text' argument. |
|
3883 |
* |
|
3884 |
* If the 'show_all' argument is set to true, then it will show all of the pages |
|
3885 |
* instead of a short list of the pages near the current page. By default, the |
|
3886 |
* 'show_all' is set to false and controlled by the 'end_size' and 'mid_size' |
|
3887 |
* arguments. The 'end_size' argument is how many numbers on either the start |
|
3888 |
* and the end list edges, by default is 1. The 'mid_size' argument is how many |
|
3889 |
* numbers to either side of current page, but not including current page. |
|
3890 |
* |
|
3891 |
* It is possible to add query vars to the link by using the 'add_args' argument |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3892 |
* and see add_query_arg() for more information. |
0 | 3893 |
* |
5 | 3894 |
* The 'before_page_number' and 'after_page_number' arguments allow users to |
3895 |
* augment the links themselves. Typically this might be to add context to the |
|
3896 |
* numbered links so that screen reader users understand what the links are for. |
|
3897 |
* The text strings are added before and after the page number - within the |
|
3898 |
* anchor tag. |
|
3899 |
* |
|
0 | 3900 |
* @since 2.1.0 |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3901 |
* @since 4.9.0 Added the `aria_current` argument. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3902 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3903 |
* @global WP_Query $wp_query |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3904 |
* @global WP_Rewrite $wp_rewrite |
0 | 3905 |
* |
5 | 3906 |
* @param string|array $args { |
3907 |
* Optional. Array or string of arguments for generating paginated links for archives. |
|
3908 |
* |
|
3909 |
* @type string $base Base of the paginated url. Default empty. |
|
3910 |
* @type string $format Format for the pagination structure. Default empty. |
|
3911 |
* @type int $total The total amount of pages. Default is the value WP_Query's |
|
3912 |
* `max_num_pages` or 1. |
|
3913 |
* @type int $current The current page number. Default is 'paged' query var or 1. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3914 |
* @type string $aria_current The value for the aria-current attribute. Possible values are 'page', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3915 |
* 'step', 'location', 'date', 'time', 'true', 'false'. Default is 'page'. |
5 | 3916 |
* @type bool $show_all Whether to show all pages. Default false. |
3917 |
* @type int $end_size How many numbers on either the start and the end list edges. |
|
3918 |
* Default 1. |
|
3919 |
* @type int $mid_size How many numbers to either side of the current pages. Default 2. |
|
3920 |
* @type bool $prev_next Whether to include the previous and next links in the list. Default true. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3921 |
* @type bool $prev_text The previous page text. Default '« Previous'. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3922 |
* @type bool $next_text The next page text. Default 'Next »'. |
5 | 3923 |
* @type string $type Controls format of the returned value. Possible values are 'plain', |
3924 |
* 'array' and 'list'. Default is 'plain'. |
|
3925 |
* @type array $add_args An array of query args to add. Default false. |
|
3926 |
* @type string $add_fragment A string to append to each link. Default empty. |
|
3927 |
* @type string $before_page_number A string to appear before the page number. Default empty. |
|
3928 |
* @type string $after_page_number A string to append after the page number. Default empty. |
|
3929 |
* } |
|
9 | 3930 |
* @return string|array|void String of page links or array of page links. |
0 | 3931 |
*/ |
3932 |
function paginate_links( $args = '' ) { |
|
5 | 3933 |
global $wp_query, $wp_rewrite; |
3934 |
||
3935 |
// Setting up default values based on the current URL. |
|
3936 |
$pagenum_link = html_entity_decode( get_pagenum_link() ); |
|
3937 |
$url_parts = explode( '?', $pagenum_link ); |
|
3938 |
||
3939 |
// Get max pages and current page out of the current query, if available. |
|
3940 |
$total = isset( $wp_query->max_num_pages ) ? $wp_query->max_num_pages : 1; |
|
3941 |
$current = get_query_var( 'paged' ) ? intval( get_query_var( 'paged' ) ) : 1; |
|
3942 |
||
3943 |
// Append the format placeholder to the base URL. |
|
3944 |
$pagenum_link = trailingslashit( $url_parts[0] ) . '%_%'; |
|
3945 |
||
3946 |
// URL base depends on permalink settings. |
|
3947 |
$format = $wp_rewrite->using_index_permalinks() && ! strpos( $pagenum_link, 'index.php' ) ? 'index.php/' : ''; |
|
3948 |
$format .= $wp_rewrite->using_permalinks() ? user_trailingslashit( $wp_rewrite->pagination_base . '/%#%', 'paged' ) : '?paged=%#%'; |
|
3949 |
||
0 | 3950 |
$defaults = array( |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3951 |
'base' => $pagenum_link, // http://example.com/all_posts.php%_% : %_% is replaced by format (below) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3952 |
'format' => $format, // ?page=%#% : %#% is replaced by the page number |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3953 |
'total' => $total, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3954 |
'current' => $current, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3955 |
'aria_current' => 'page', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3956 |
'show_all' => false, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3957 |
'prev_next' => true, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3958 |
'prev_text' => __( '« Previous' ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3959 |
'next_text' => __( 'Next »' ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3960 |
'end_size' => 1, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3961 |
'mid_size' => 2, |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3962 |
'type' => 'plain', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3963 |
'add_args' => array(), // array of query args to add |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3964 |
'add_fragment' => '', |
5 | 3965 |
'before_page_number' => '', |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3966 |
'after_page_number' => '', |
0 | 3967 |
); |
3968 |
||
3969 |
$args = wp_parse_args( $args, $defaults ); |
|
5 | 3970 |
|
3971 |
if ( ! is_array( $args['add_args'] ) ) { |
|
3972 |
$args['add_args'] = array(); |
|
3973 |
} |
|
3974 |
||
3975 |
// Merge additional query vars found in the original URL into 'add_args' array. |
|
3976 |
if ( isset( $url_parts[1] ) ) { |
|
3977 |
// Find the format argument. |
|
9 | 3978 |
$format = explode( '?', str_replace( '%_%', $args['format'], $args['base'] ) ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3979 |
$format_query = isset( $format[1] ) ? $format[1] : ''; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3980 |
wp_parse_str( $format_query, $format_args ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3981 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3982 |
// Find the query args of the requested URL. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3983 |
wp_parse_str( $url_parts[1], $url_query_args ); |
5 | 3984 |
|
3985 |
// Remove the format argument from the array of query arguments, to avoid overwriting custom format. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3986 |
foreach ( $format_args as $format_arg => $format_arg_value ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3987 |
unset( $url_query_args[ $format_arg ] ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3988 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3989 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
3990 |
$args['add_args'] = array_merge( $args['add_args'], urlencode_deep( $url_query_args ) ); |
5 | 3991 |
} |
0 | 3992 |
|
3993 |
// Who knows what else people pass in $args |
|
5 | 3994 |
$total = (int) $args['total']; |
3995 |
if ( $total < 2 ) { |
|
0 | 3996 |
return; |
5 | 3997 |
} |
3998 |
$current = (int) $args['current']; |
|
3999 |
$end_size = (int) $args['end_size']; // Out of bounds? Make it the default. |
|
4000 |
if ( $end_size < 1 ) { |
|
4001 |
$end_size = 1; |
|
4002 |
} |
|
4003 |
$mid_size = (int) $args['mid_size']; |
|
4004 |
if ( $mid_size < 0 ) { |
|
4005 |
$mid_size = 2; |
|
4006 |
} |
|
9 | 4007 |
$add_args = $args['add_args']; |
4008 |
$r = ''; |
|
0 | 4009 |
$page_links = array(); |
9 | 4010 |
$dots = false; |
0 | 4011 |
|
5 | 4012 |
if ( $args['prev_next'] && $current && 1 < $current ) : |
4013 |
$link = str_replace( '%_%', 2 == $current ? '' : $args['format'], $args['base'] ); |
|
4014 |
$link = str_replace( '%#%', $current - 1, $link ); |
|
9 | 4015 |
if ( $add_args ) { |
0 | 4016 |
$link = add_query_arg( $add_args, $link ); |
9 | 4017 |
} |
5 | 4018 |
$link .= $args['add_fragment']; |
4019 |
||
4020 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4021 |
* Filters the paginated links for the given archive pages. |
5 | 4022 |
* |
4023 |
* @since 3.0.0 |
|
4024 |
* |
|
4025 |
* @param string $link The paginated link URL. |
|
4026 |
*/ |
|
4027 |
$page_links[] = '<a class="prev page-numbers" href="' . esc_url( apply_filters( 'paginate_links', $link ) ) . '">' . $args['prev_text'] . '</a>'; |
|
0 | 4028 |
endif; |
4029 |
for ( $n = 1; $n <= $total; $n++ ) : |
|
4030 |
if ( $n == $current ) : |
|
9 | 4031 |
$page_links[] = "<span aria-current='" . esc_attr( $args['aria_current'] ) . "' class='page-numbers current'>" . $args['before_page_number'] . number_format_i18n( $n ) . $args['after_page_number'] . '</span>'; |
4032 |
$dots = true; |
|
0 | 4033 |
else : |
5 | 4034 |
if ( $args['show_all'] || ( $n <= $end_size || ( $current && $n >= $current - $mid_size && $n <= $current + $mid_size ) || $n > $total - $end_size ) ) : |
4035 |
$link = str_replace( '%_%', 1 == $n ? '' : $args['format'], $args['base'] ); |
|
4036 |
$link = str_replace( '%#%', $n, $link ); |
|
9 | 4037 |
if ( $add_args ) { |
0 | 4038 |
$link = add_query_arg( $add_args, $link ); |
9 | 4039 |
} |
5 | 4040 |
$link .= $args['add_fragment']; |
4041 |
||
4042 |
/** This filter is documented in wp-includes/general-template.php */ |
|
9 | 4043 |
$page_links[] = "<a class='page-numbers' href='" . esc_url( apply_filters( 'paginate_links', $link ) ) . "'>" . $args['before_page_number'] . number_format_i18n( $n ) . $args['after_page_number'] . '</a>'; |
4044 |
$dots = true; |
|
5 | 4045 |
elseif ( $dots && ! $args['show_all'] ) : |
0 | 4046 |
$page_links[] = '<span class="page-numbers dots">' . __( '…' ) . '</span>'; |
9 | 4047 |
$dots = false; |
0 | 4048 |
endif; |
4049 |
endif; |
|
4050 |
endfor; |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4051 |
if ( $args['prev_next'] && $current && $current < $total ) : |
5 | 4052 |
$link = str_replace( '%_%', $args['format'], $args['base'] ); |
4053 |
$link = str_replace( '%#%', $current + 1, $link ); |
|
9 | 4054 |
if ( $add_args ) { |
0 | 4055 |
$link = add_query_arg( $add_args, $link ); |
9 | 4056 |
} |
5 | 4057 |
$link .= $args['add_fragment']; |
4058 |
||
4059 |
/** This filter is documented in wp-includes/general-template.php */ |
|
4060 |
$page_links[] = '<a class="next page-numbers" href="' . esc_url( apply_filters( 'paginate_links', $link ) ) . '">' . $args['next_text'] . '</a>'; |
|
0 | 4061 |
endif; |
5 | 4062 |
switch ( $args['type'] ) { |
9 | 4063 |
case 'array': |
0 | 4064 |
return $page_links; |
5 | 4065 |
|
9 | 4066 |
case 'list': |
0 | 4067 |
$r .= "<ul class='page-numbers'>\n\t<li>"; |
9 | 4068 |
$r .= join( "</li>\n\t<li>", $page_links ); |
0 | 4069 |
$r .= "</li>\n</ul>\n"; |
4070 |
break; |
|
5 | 4071 |
|
9 | 4072 |
default: |
4073 |
$r = join( "\n", $page_links ); |
|
0 | 4074 |
break; |
5 | 4075 |
} |
0 | 4076 |
return $r; |
4077 |
} |
|
4078 |
||
4079 |
/** |
|
9 | 4080 |
* Registers an admin color scheme css file. |
4081 |
* |
|
4082 |
* Allows a plugin to register a new admin color scheme. For example: |
|
5 | 4083 |
* |
4084 |
* wp_admin_css_color( 'classic', __( 'Classic' ), admin_url( "css/colors-classic.css" ), array( |
|
4085 |
* '#07273E', '#14568A', '#D54E21', '#2683AE' |
|
4086 |
* ) ); |
|
0 | 4087 |
* |
4088 |
* @since 2.5.0 |
|
4089 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4090 |
* @global array $_wp_admin_css_colors |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4091 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4092 |
* @param string $key The unique key for this theme. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4093 |
* @param string $name The name of the theme. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4094 |
* @param string $url The URL of the CSS file containing the color scheme. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4095 |
* @param array $colors Optional. An array of CSS color definition strings which are used |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4096 |
* to give the user a feel for the theme. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4097 |
* @param array $icons { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4098 |
* Optional. CSS color definitions used to color any SVG icons. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4099 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4100 |
* @type string $base SVG icon base color. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4101 |
* @type string $focus SVG icon color on focus. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4102 |
* @type string $current SVG icon color of current admin menu link. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4103 |
* } |
0 | 4104 |
*/ |
5 | 4105 |
function wp_admin_css_color( $key, $name, $url, $colors = array(), $icons = array() ) { |
0 | 4106 |
global $_wp_admin_css_colors; |
4107 |
||
9 | 4108 |
if ( ! isset( $_wp_admin_css_colors ) ) { |
0 | 4109 |
$_wp_admin_css_colors = array(); |
9 | 4110 |
} |
4111 |
||
4112 |
$_wp_admin_css_colors[ $key ] = (object) array( |
|
4113 |
'name' => $name, |
|
4114 |
'url' => $url, |
|
4115 |
'colors' => $colors, |
|
5 | 4116 |
'icon_colors' => $icons, |
4117 |
); |
|
0 | 4118 |
} |
4119 |
||
4120 |
/** |
|
9 | 4121 |
* Registers the default admin color schemes. |
4122 |
* |
|
4123 |
* Registers the initial set of eight color schemes in the Profile section |
|
4124 |
* of the dashboard which allows for styling the admin menu and toolbar. |
|
4125 |
* |
|
4126 |
* @see wp_admin_css_color() |
|
0 | 4127 |
* |
4128 |
* @since 3.0.0 |
|
4129 |
*/ |
|
4130 |
function register_admin_color_schemes() { |
|
9 | 4131 |
$suffix = is_rtl() ? '-rtl' : ''; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4132 |
$suffix .= SCRIPT_DEBUG ? '' : '.min'; |
5 | 4133 |
|
9 | 4134 |
wp_admin_css_color( |
4135 |
'fresh', |
|
4136 |
_x( 'Default', 'admin color scheme' ), |
|
5 | 4137 |
false, |
4138 |
array( '#222', '#333', '#0073aa', '#00a0d2' ), |
|
9 | 4139 |
array( |
4140 |
'base' => '#a0a5aa', |
|
4141 |
'focus' => '#00a0d2', |
|
4142 |
'current' => '#fff', |
|
4143 |
) |
|
5 | 4144 |
); |
4145 |
||
4146 |
// Other color schemes are not available when running out of src |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4147 |
if ( false !== strpos( get_bloginfo( 'version' ), '-src' ) ) { |
5 | 4148 |
return; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4149 |
} |
5 | 4150 |
|
9 | 4151 |
wp_admin_css_color( |
4152 |
'light', |
|
4153 |
_x( 'Light', 'admin color scheme' ), |
|
5 | 4154 |
admin_url( "css/colors/light/colors$suffix.css" ), |
4155 |
array( '#e5e5e5', '#999', '#d64e07', '#04a4cc' ), |
|
9 | 4156 |
array( |
4157 |
'base' => '#999', |
|
4158 |
'focus' => '#ccc', |
|
4159 |
'current' => '#ccc', |
|
4160 |
) |
|
5 | 4161 |
); |
4162 |
||
9 | 4163 |
wp_admin_css_color( |
4164 |
'blue', |
|
4165 |
_x( 'Blue', 'admin color scheme' ), |
|
5 | 4166 |
admin_url( "css/colors/blue/colors$suffix.css" ), |
4167 |
array( '#096484', '#4796b3', '#52accc', '#74B6CE' ), |
|
9 | 4168 |
array( |
4169 |
'base' => '#e5f8ff', |
|
4170 |
'focus' => '#fff', |
|
4171 |
'current' => '#fff', |
|
4172 |
) |
|
5 | 4173 |
); |
4174 |
||
9 | 4175 |
wp_admin_css_color( |
4176 |
'midnight', |
|
4177 |
_x( 'Midnight', 'admin color scheme' ), |
|
5 | 4178 |
admin_url( "css/colors/midnight/colors$suffix.css" ), |
4179 |
array( '#25282b', '#363b3f', '#69a8bb', '#e14d43' ), |
|
9 | 4180 |
array( |
4181 |
'base' => '#f1f2f3', |
|
4182 |
'focus' => '#fff', |
|
4183 |
'current' => '#fff', |
|
4184 |
) |
|
5 | 4185 |
); |
4186 |
||
9 | 4187 |
wp_admin_css_color( |
4188 |
'sunrise', |
|
4189 |
_x( 'Sunrise', 'admin color scheme' ), |
|
5 | 4190 |
admin_url( "css/colors/sunrise/colors$suffix.css" ), |
4191 |
array( '#b43c38', '#cf4944', '#dd823b', '#ccaf0b' ), |
|
9 | 4192 |
array( |
4193 |
'base' => '#f3f1f1', |
|
4194 |
'focus' => '#fff', |
|
4195 |
'current' => '#fff', |
|
4196 |
) |
|
5 | 4197 |
); |
4198 |
||
9 | 4199 |
wp_admin_css_color( |
4200 |
'ectoplasm', |
|
4201 |
_x( 'Ectoplasm', 'admin color scheme' ), |
|
5 | 4202 |
admin_url( "css/colors/ectoplasm/colors$suffix.css" ), |
4203 |
array( '#413256', '#523f6d', '#a3b745', '#d46f15' ), |
|
9 | 4204 |
array( |
4205 |
'base' => '#ece6f6', |
|
4206 |
'focus' => '#fff', |
|
4207 |
'current' => '#fff', |
|
4208 |
) |
|
5 | 4209 |
); |
4210 |
||
9 | 4211 |
wp_admin_css_color( |
4212 |
'ocean', |
|
4213 |
_x( 'Ocean', 'admin color scheme' ), |
|
5 | 4214 |
admin_url( "css/colors/ocean/colors$suffix.css" ), |
4215 |
array( '#627c83', '#738e96', '#9ebaa0', '#aa9d88' ), |
|
9 | 4216 |
array( |
4217 |
'base' => '#f2fcff', |
|
4218 |
'focus' => '#fff', |
|
4219 |
'current' => '#fff', |
|
4220 |
) |
|
5 | 4221 |
); |
4222 |
||
9 | 4223 |
wp_admin_css_color( |
4224 |
'coffee', |
|
4225 |
_x( 'Coffee', 'admin color scheme' ), |
|
5 | 4226 |
admin_url( "css/colors/coffee/colors$suffix.css" ), |
4227 |
array( '#46403c', '#59524c', '#c7a589', '#9ea476' ), |
|
9 | 4228 |
array( |
4229 |
'base' => '#f3f2f1', |
|
4230 |
'focus' => '#fff', |
|
4231 |
'current' => '#fff', |
|
4232 |
) |
|
5 | 4233 |
); |
4234 |
||
0 | 4235 |
} |
4236 |
||
4237 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4238 |
* Displays the URL of a WordPress admin CSS file. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4239 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4240 |
* @see WP_Styles::_css_href and its {@see 'style_loader_src'} filter. |
0 | 4241 |
* |
4242 |
* @since 2.3.0 |
|
4243 |
* |
|
4244 |
* @param string $file file relative to wp-admin/ without its ".css" extension. |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4245 |
* @return string |
0 | 4246 |
*/ |
4247 |
function wp_admin_css_uri( $file = 'wp-admin' ) { |
|
9 | 4248 |
if ( defined( 'WP_INSTALLING' ) ) { |
0 | 4249 |
$_file = "./$file.css"; |
4250 |
} else { |
|
9 | 4251 |
$_file = admin_url( "$file.css" ); |
0 | 4252 |
} |
9 | 4253 |
$_file = add_query_arg( 'version', get_bloginfo( 'version' ), $_file ); |
0 | 4254 |
|
5 | 4255 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4256 |
* Filters the URI of a WordPress admin CSS file. |
5 | 4257 |
* |
4258 |
* @since 2.3.0 |
|
4259 |
* |
|
4260 |
* @param string $_file Relative path to the file with query arguments attached. |
|
4261 |
* @param string $file Relative path to the file, minus its ".css" extension. |
|
4262 |
*/ |
|
0 | 4263 |
return apply_filters( 'wp_admin_css_uri', $_file, $file ); |
4264 |
} |
|
4265 |
||
4266 |
/** |
|
4267 |
* Enqueues or directly prints a stylesheet link to the specified CSS file. |
|
4268 |
* |
|
4269 |
* "Intelligently" decides to enqueue or to print the CSS file. If the |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4270 |
* {@see 'wp_print_styles'} action has *not* yet been called, the CSS file will be |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4271 |
* enqueued. If the {@see 'wp_print_styles'} action has been called, the CSS link will |
0 | 4272 |
* be printed. Printing may be forced by passing true as the $force_echo |
4273 |
* (second) parameter. |
|
4274 |
* |
|
4275 |
* For backward compatibility with WordPress 2.3 calling method: If the $file |
|
4276 |
* (first) parameter does not correspond to a registered CSS file, we assume |
|
4277 |
* $file is a file relative to wp-admin/ without its ".css" extension. A |
|
4278 |
* stylesheet link to that generated URL is printed. |
|
4279 |
* |
|
4280 |
* @since 2.3.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4281 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4282 |
* @param string $file Optional. Style handle name or file name (without ".css" extension) relative |
9 | 4283 |
* to wp-admin/. Defaults to 'wp-admin'. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4284 |
* @param bool $force_echo Optional. Force the stylesheet link to be printed rather than enqueued. |
0 | 4285 |
*/ |
4286 |
function wp_admin_css( $file = 'wp-admin', $force_echo = false ) { |
|
4287 |
// For backward compatibility |
|
4288 |
$handle = 0 === strpos( $file, 'css/' ) ? substr( $file, 4 ) : $file; |
|
4289 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4290 |
if ( wp_styles()->query( $handle ) ) { |
9 | 4291 |
if ( $force_echo || did_action( 'wp_print_styles' ) ) { // we already printed the style queue. Print this one immediately |
0 | 4292 |
wp_print_styles( $handle ); |
9 | 4293 |
} else { // Add to style queue |
0 | 4294 |
wp_enqueue_style( $handle ); |
9 | 4295 |
} |
0 | 4296 |
return; |
4297 |
} |
|
4298 |
||
5 | 4299 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4300 |
* Filters the stylesheet link to the specified CSS file. |
5 | 4301 |
* |
4302 |
* If the site is set to display right-to-left, the RTL stylesheet link |
|
4303 |
* will be used instead. |
|
4304 |
* |
|
4305 |
* @since 2.3.0 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4306 |
* @param string $stylesheet_link HTML link element for the stylesheet. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4307 |
* @param string $file Style handle name or filename (without ".css" extension) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4308 |
* relative to wp-admin/. Defaults to 'wp-admin'. |
5 | 4309 |
*/ |
0 | 4310 |
echo apply_filters( 'wp_admin_css', "<link rel='stylesheet' href='" . esc_url( wp_admin_css_uri( $file ) ) . "' type='text/css' />\n", $file ); |
5 | 4311 |
|
4312 |
if ( function_exists( 'is_rtl' ) && is_rtl() ) { |
|
4313 |
/** This filter is documented in wp-includes/general-template.php */ |
|
0 | 4314 |
echo apply_filters( 'wp_admin_css', "<link rel='stylesheet' href='" . esc_url( wp_admin_css_uri( "$file-rtl" ) ) . "' type='text/css' />\n", "$file-rtl" ); |
5 | 4315 |
} |
0 | 4316 |
} |
4317 |
||
4318 |
/** |
|
4319 |
* Enqueues the default ThickBox js and css. |
|
4320 |
* |
|
4321 |
* If any of the settings need to be changed, this can be done with another js |
|
4322 |
* file similar to media-upload.js. That file should |
|
4323 |
* require array('thickbox') to ensure it is loaded after. |
|
4324 |
* |
|
4325 |
* @since 2.5.0 |
|
4326 |
*/ |
|
4327 |
function add_thickbox() { |
|
4328 |
wp_enqueue_script( 'thickbox' ); |
|
4329 |
wp_enqueue_style( 'thickbox' ); |
|
4330 |
||
9 | 4331 |
if ( is_network_admin() ) { |
0 | 4332 |
add_action( 'admin_head', '_thickbox_path_admin_subfolder' ); |
9 | 4333 |
} |
0 | 4334 |
} |
4335 |
||
4336 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4337 |
* Displays the XHTML generator that is generated on the wp_head hook. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4338 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4339 |
* See {@see 'wp_head'}. |
0 | 4340 |
* |
4341 |
* @since 2.5.0 |
|
4342 |
*/ |
|
4343 |
function wp_generator() { |
|
5 | 4344 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4345 |
* Filters the output of the XHTML generator tag. |
5 | 4346 |
* |
4347 |
* @since 2.5.0 |
|
4348 |
* |
|
4349 |
* @param string $generator_type The XHTML generator. |
|
4350 |
*/ |
|
0 | 4351 |
the_generator( apply_filters( 'wp_generator_type', 'xhtml' ) ); |
4352 |
} |
|
4353 |
||
4354 |
/** |
|
4355 |
* Display the generator XML or Comment for RSS, ATOM, etc. |
|
4356 |
* |
|
4357 |
* Returns the correct generator type for the requested output format. Allows |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4358 |
* for a plugin to filter generators overall the {@see 'the_generator'} filter. |
0 | 4359 |
* |
4360 |
* @since 2.5.0 |
|
4361 |
* |
|
4362 |
* @param string $type The type of generator to output - (html|xhtml|atom|rss2|rdf|comment|export). |
|
4363 |
*/ |
|
4364 |
function the_generator( $type ) { |
|
5 | 4365 |
/** |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4366 |
* Filters the output of the XHTML generator tag for display. |
5 | 4367 |
* |
4368 |
* @since 2.5.0 |
|
4369 |
* |
|
4370 |
* @param string $generator_type The generator output. |
|
4371 |
* @param string $type The type of generator to output. Accepts 'html', |
|
4372 |
* 'xhtml', 'atom', 'rss2', 'rdf', 'comment', 'export'. |
|
4373 |
*/ |
|
9 | 4374 |
echo apply_filters( 'the_generator', get_the_generator( $type ), $type ) . "\n"; |
0 | 4375 |
} |
4376 |
||
4377 |
/** |
|
4378 |
* Creates the generator XML or Comment for RSS, ATOM, etc. |
|
4379 |
* |
|
4380 |
* Returns the correct generator type for the requested output format. Allows |
|
4381 |
* for a plugin to filter generators on an individual basis using the |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4382 |
* {@see 'get_the_generator_$type'} filter. |
0 | 4383 |
* |
4384 |
* @since 2.5.0 |
|
4385 |
* |
|
4386 |
* @param string $type The type of generator to return - (html|xhtml|atom|rss2|rdf|comment|export). |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4387 |
* @return string|void The HTML content for the generator. |
0 | 4388 |
*/ |
4389 |
function get_the_generator( $type = '' ) { |
|
4390 |
if ( empty( $type ) ) { |
|
4391 |
||
4392 |
$current_filter = current_filter(); |
|
9 | 4393 |
if ( empty( $current_filter ) ) { |
0 | 4394 |
return; |
9 | 4395 |
} |
0 | 4396 |
|
4397 |
switch ( $current_filter ) { |
|
9 | 4398 |
case 'rss2_head': |
4399 |
case 'commentsrss2_head': |
|
0 | 4400 |
$type = 'rss2'; |
4401 |
break; |
|
9 | 4402 |
case 'rss_head': |
4403 |
case 'opml_head': |
|
0 | 4404 |
$type = 'comment'; |
4405 |
break; |
|
9 | 4406 |
case 'rdf_header': |
0 | 4407 |
$type = 'rdf'; |
4408 |
break; |
|
9 | 4409 |
case 'atom_head': |
4410 |
case 'comments_atom_head': |
|
4411 |
case 'app_head': |
|
0 | 4412 |
$type = 'atom'; |
4413 |
break; |
|
4414 |
} |
|
4415 |
} |
|
4416 |
||
4417 |
switch ( $type ) { |
|
4418 |
case 'html': |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4419 |
$gen = '<meta name="generator" content="WordPress ' . esc_attr( get_bloginfo( 'version' ) ) . '">'; |
0 | 4420 |
break; |
4421 |
case 'xhtml': |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4422 |
$gen = '<meta name="generator" content="WordPress ' . esc_attr( get_bloginfo( 'version' ) ) . '" />'; |
0 | 4423 |
break; |
4424 |
case 'atom': |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4425 |
$gen = '<generator uri="https://wordpress.org/" version="' . esc_attr( get_bloginfo_rss( 'version' ) ) . '">WordPress</generator>'; |
0 | 4426 |
break; |
4427 |
case 'rss2': |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4428 |
$gen = '<generator>' . esc_url_raw( 'https://wordpress.org/?v=' . get_bloginfo_rss( 'version' ) ) . '</generator>'; |
0 | 4429 |
break; |
4430 |
case 'rdf': |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4431 |
$gen = '<admin:generatorAgent rdf:resource="' . esc_url_raw( 'https://wordpress.org/?v=' . get_bloginfo_rss( 'version' ) ) . '" />'; |
0 | 4432 |
break; |
4433 |
case 'comment': |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4434 |
$gen = '<!-- generator="WordPress/' . esc_attr( get_bloginfo( 'version' ) ) . '" -->'; |
0 | 4435 |
break; |
4436 |
case 'export': |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4437 |
$gen = '<!-- generator="WordPress/' . esc_attr( get_bloginfo_rss( 'version' ) ) . '" created="' . date( 'Y-m-d H:i' ) . '" -->'; |
0 | 4438 |
break; |
4439 |
} |
|
5 | 4440 |
|
4441 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4442 |
* Filters the HTML for the retrieved generator type. |
5 | 4443 |
* |
4444 |
* The dynamic portion of the hook name, `$type`, refers to the generator type. |
|
4445 |
* |
|
4446 |
* @since 2.5.0 |
|
4447 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4448 |
* @param string $gen The HTML markup output to wp_head(). |
5 | 4449 |
* @param string $type The type of generator. Accepts 'html', 'xhtml', 'atom', |
4450 |
* 'rss2', 'rdf', 'comment', 'export'. |
|
4451 |
*/ |
|
0 | 4452 |
return apply_filters( "get_the_generator_{$type}", $gen, $type ); |
4453 |
} |
|
4454 |
||
4455 |
/** |
|
4456 |
* Outputs the html checked attribute. |
|
4457 |
* |
|
4458 |
* Compares the first two arguments and if identical marks as checked |
|
4459 |
* |
|
4460 |
* @since 1.0.0 |
|
4461 |
* |
|
4462 |
* @param mixed $checked One of the values to compare |
|
4463 |
* @param mixed $current (true) The other value to compare if not just true |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4464 |
* @param bool $echo Whether to echo or just return the string |
0 | 4465 |
* @return string html attribute or empty string |
4466 |
*/ |
|
4467 |
function checked( $checked, $current = true, $echo = true ) { |
|
4468 |
return __checked_selected_helper( $checked, $current, $echo, 'checked' ); |
|
4469 |
} |
|
4470 |
||
4471 |
/** |
|
4472 |
* Outputs the html selected attribute. |
|
4473 |
* |
|
4474 |
* Compares the first two arguments and if identical marks as selected |
|
4475 |
* |
|
4476 |
* @since 1.0.0 |
|
4477 |
* |
|
4478 |
* @param mixed $selected One of the values to compare |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4479 |
* @param mixed $current (true) The other value to compare if not just true |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4480 |
* @param bool $echo Whether to echo or just return the string |
0 | 4481 |
* @return string html attribute or empty string |
4482 |
*/ |
|
4483 |
function selected( $selected, $current = true, $echo = true ) { |
|
4484 |
return __checked_selected_helper( $selected, $current, $echo, 'selected' ); |
|
4485 |
} |
|
4486 |
||
4487 |
/** |
|
4488 |
* Outputs the html disabled attribute. |
|
4489 |
* |
|
4490 |
* Compares the first two arguments and if identical marks as disabled |
|
4491 |
* |
|
4492 |
* @since 3.0.0 |
|
4493 |
* |
|
4494 |
* @param mixed $disabled One of the values to compare |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4495 |
* @param mixed $current (true) The other value to compare if not just true |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4496 |
* @param bool $echo Whether to echo or just return the string |
0 | 4497 |
* @return string html attribute or empty string |
4498 |
*/ |
|
4499 |
function disabled( $disabled, $current = true, $echo = true ) { |
|
4500 |
return __checked_selected_helper( $disabled, $current, $echo, 'disabled' ); |
|
4501 |
} |
|
4502 |
||
4503 |
/** |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4504 |
* Outputs the html readonly attribute. |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4505 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4506 |
* Compares the first two arguments and if identical marks as readonly |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4507 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4508 |
* @since 4.9.0 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4509 |
* |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4510 |
* @param mixed $readonly One of the values to compare |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4511 |
* @param mixed $current (true) The other value to compare if not just true |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4512 |
* @param bool $echo Whether to echo or just return the string |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4513 |
* @return string html attribute or empty string |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4514 |
*/ |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4515 |
function readonly( $readonly, $current = true, $echo = true ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4516 |
return __checked_selected_helper( $readonly, $current, $echo, 'readonly' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4517 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4518 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4519 |
/** |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4520 |
* Private helper function for checked, selected, disabled and readonly. |
0 | 4521 |
* |
4522 |
* Compares the first two arguments and if identical marks as $type |
|
4523 |
* |
|
4524 |
* @since 2.8.0 |
|
4525 |
* @access private |
|
4526 |
* |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4527 |
* @param mixed $helper One of the values to compare |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4528 |
* @param mixed $current (true) The other value to compare if not just true |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4529 |
* @param bool $echo Whether to echo or just return the string |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
4530 |
* @param string $type The type of checked|selected|disabled|readonly we are doing |
0 | 4531 |
* @return string html attribute or empty string |
4532 |
*/ |
|
4533 |
function __checked_selected_helper( $helper, $current, $echo, $type ) { |
|
9 | 4534 |
if ( (string) $helper === (string) $current ) { |
0 | 4535 |
$result = " $type='$type'"; |
9 | 4536 |
} else { |
0 | 4537 |
$result = ''; |
9 | 4538 |
} |
4539 |
||
4540 |
if ( $echo ) { |
|
0 | 4541 |
echo $result; |
9 | 4542 |
} |
0 | 4543 |
|
4544 |
return $result; |
|
4545 |
} |
|
4546 |
||
4547 |
/** |
|
4548 |
* Default settings for heartbeat |
|
4549 |
* |
|
4550 |
* Outputs the nonce used in the heartbeat XHR |
|
4551 |
* |
|
4552 |
* @since 3.6.0 |
|
4553 |
* |
|
4554 |
* @param array $settings |
|
4555 |
* @return array $settings |
|
4556 |
*/ |
|
4557 |
function wp_heartbeat_settings( $settings ) { |
|
9 | 4558 |
if ( ! is_admin() ) { |
0 | 4559 |
$settings['ajaxurl'] = admin_url( 'admin-ajax.php', 'relative' ); |
9 | 4560 |
} |
4561 |
||
4562 |
if ( is_user_logged_in() ) { |
|
0 | 4563 |
$settings['nonce'] = wp_create_nonce( 'heartbeat-nonce' ); |
9 | 4564 |
} |
0 | 4565 |
|
4566 |
return $settings; |
|
4567 |
} |