]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/theme.php
WordPress 4.1.3-scripts
[autoinstalls/wordpress.git] / wp-includes / theme.php
1 <?php
2 /**
3  * Theme, template, and stylesheet functions.
4  *
5  * @package WordPress
6  * @subpackage Theme
7  */
8
9 /**
10  * Returns an array of WP_Theme objects based on the arguments.
11  *
12  * Despite advances over get_themes(), this function is quite expensive, and grows
13  * linearly with additional themes. Stick to wp_get_theme() if possible.
14  *
15  * @since 3.4.0
16  *
17  * @param array $args The search arguments. Optional.
18  * - errors      mixed  True to return themes with errors, false to return themes without errors, null
19  *                      to return all themes. Defaults to false.
20  * - allowed     mixed  (Multisite) True to return only allowed themes for a site. False to return only
21  *                      disallowed themes for a site. 'site' to return only site-allowed themes. 'network'
22  *                      to return only network-allowed themes. Null to return all themes. Defaults to null.
23  * - blog_id     int    (Multisite) The blog ID used to calculate which themes are allowed. Defaults to 0,
24  *                      synonymous for the current blog.
25  * @return Array of WP_Theme objects.
26  */
27 function wp_get_themes( $args = array() ) {
28         global $wp_theme_directories;
29
30         $defaults = array( 'errors' => false, 'allowed' => null, 'blog_id' => 0 );
31         $args = wp_parse_args( $args, $defaults );
32
33         $theme_directories = search_theme_directories();
34
35         if ( count( $wp_theme_directories ) > 1 ) {
36                 // Make sure the current theme wins out, in case search_theme_directories() picks the wrong
37                 // one in the case of a conflict. (Normally, last registered theme root wins.)
38                 $current_theme = get_stylesheet();
39                 if ( isset( $theme_directories[ $current_theme ] ) ) {
40                         $root_of_current_theme = get_raw_theme_root( $current_theme );
41                         if ( ! in_array( $root_of_current_theme, $wp_theme_directories ) )
42                                 $root_of_current_theme = WP_CONTENT_DIR . $root_of_current_theme;
43                         $theme_directories[ $current_theme ]['theme_root'] = $root_of_current_theme;
44                 }
45         }
46
47         if ( empty( $theme_directories ) )
48                 return array();
49
50         if ( is_multisite() && null !== $args['allowed'] ) {
51                 $allowed = $args['allowed'];
52                 if ( 'network' === $allowed )
53                         $theme_directories = array_intersect_key( $theme_directories, WP_Theme::get_allowed_on_network() );
54                 elseif ( 'site' === $allowed )
55                         $theme_directories = array_intersect_key( $theme_directories, WP_Theme::get_allowed_on_site( $args['blog_id'] ) );
56                 elseif ( $allowed )
57                         $theme_directories = array_intersect_key( $theme_directories, WP_Theme::get_allowed( $args['blog_id'] ) );
58                 else
59                         $theme_directories = array_diff_key( $theme_directories, WP_Theme::get_allowed( $args['blog_id'] ) );
60         }
61
62         $themes = array();
63         static $_themes = array();
64
65         foreach ( $theme_directories as $theme => $theme_root ) {
66                 if ( isset( $_themes[ $theme_root['theme_root'] . '/' . $theme ] ) )
67                         $themes[ $theme ] = $_themes[ $theme_root['theme_root'] . '/' . $theme ];
68                 else
69                         $themes[ $theme ] = $_themes[ $theme_root['theme_root'] . '/' . $theme ] = new WP_Theme( $theme, $theme_root['theme_root'] );
70         }
71
72         if ( null !== $args['errors'] ) {
73                 foreach ( $themes as $theme => $wp_theme ) {
74                         if ( $wp_theme->errors() != $args['errors'] )
75                                 unset( $themes[ $theme ] );
76                 }
77         }
78
79         return $themes;
80 }
81
82 /**
83  * Gets a WP_Theme object for a theme.
84  *
85  * @since 3.4.0
86  *
87  * @param string $stylesheet Directory name for the theme. Optional. Defaults to current theme.
88  * @param string $theme_root Absolute path of the theme root to look in. Optional. If not specified, get_raw_theme_root()
89  *      is used to calculate the theme root for the $stylesheet provided (or current theme).
90  * @return WP_Theme Theme object. Be sure to check the object's exists() method if you need to confirm the theme's existence.
91  */
92 function wp_get_theme( $stylesheet = null, $theme_root = null ) {
93         global $wp_theme_directories;
94
95         if ( empty( $stylesheet ) )
96                 $stylesheet = get_stylesheet();
97
98         if ( empty( $theme_root ) ) {
99                 $theme_root = get_raw_theme_root( $stylesheet );
100                 if ( false === $theme_root )
101                         $theme_root = WP_CONTENT_DIR . '/themes';
102                 elseif ( ! in_array( $theme_root, (array) $wp_theme_directories ) )
103                         $theme_root = WP_CONTENT_DIR . $theme_root;
104         }
105
106         return new WP_Theme( $stylesheet, $theme_root );
107 }
108
109 /**
110  * Clears the cache held by get_theme_roots() and WP_Theme.
111  *
112  * @since 3.5.0
113  * @param bool $clear_update_cache Whether to clear the Theme updates cache
114  */
115 function wp_clean_themes_cache( $clear_update_cache = true ) {
116         if ( $clear_update_cache )
117                 delete_site_transient( 'update_themes' );
118         search_theme_directories( true );
119         foreach ( wp_get_themes( array( 'errors' => null ) ) as $theme )
120                 $theme->cache_delete();
121 }
122
123 /**
124  * Whether a child theme is in use.
125  *
126  * @since 3.0.0
127  *
128  * @return bool true if a child theme is in use, false otherwise.
129  **/
130 function is_child_theme() {
131         return ( TEMPLATEPATH !== STYLESHEETPATH );
132 }
133
134 /**
135  * Retrieve name of the current stylesheet.
136  *
137  * The theme name that the administrator has currently set the front end theme
138  * as.
139  *
140  * For all intents and purposes, the template name and the stylesheet name are
141  * going to be the same for most cases.
142  *
143  * @since 1.5.0
144  *
145  * @return string Stylesheet name.
146  */
147 function get_stylesheet() {
148         /**
149          * Filter the name of current stylesheet.
150          *
151          * @since 1.5.0
152          *
153          * @param string $stylesheet Name of the current stylesheet.
154          */
155         return apply_filters( 'stylesheet', get_option( 'stylesheet' ) );
156 }
157
158 /**
159  * Retrieve stylesheet directory path for current theme.
160  *
161  * @since 1.5.0
162  *
163  * @return string Path to current theme directory.
164  */
165 function get_stylesheet_directory() {
166         $stylesheet = get_stylesheet();
167         $theme_root = get_theme_root( $stylesheet );
168         $stylesheet_dir = "$theme_root/$stylesheet";
169
170         /**
171          * Filter the stylesheet directory path for current theme.
172          *
173          * @since 1.5.0
174          *
175          * @param string $stylesheet_dir Absolute path to the current them.
176          * @param string $stylesheet     Directory name of the current theme.
177          * @param string $theme_root     Absolute path to themes directory.
178          */
179         return apply_filters( 'stylesheet_directory', $stylesheet_dir, $stylesheet, $theme_root );
180 }
181
182 /**
183  * Retrieve stylesheet directory URI.
184  *
185  * @since 1.5.0
186  *
187  * @return string
188  */
189 function get_stylesheet_directory_uri() {
190         $stylesheet = str_replace( '%2F', '/', rawurlencode( get_stylesheet() ) );
191         $theme_root_uri = get_theme_root_uri( $stylesheet );
192         $stylesheet_dir_uri = "$theme_root_uri/$stylesheet";
193
194         /**
195          * Filter the stylesheet directory URI.
196          *
197          * @since 1.5.0
198          *
199          * @param string $stylesheet_dir_uri Stylesheet directory URI.
200          * @param string $stylesheet         Name of the activated theme's directory.
201          * @param string $theme_root_uri     Themes root URI.
202          */
203         return apply_filters( 'stylesheet_directory_uri', $stylesheet_dir_uri, $stylesheet, $theme_root_uri );
204 }
205
206 /**
207  * Retrieve URI of current theme stylesheet.
208  *
209  * The stylesheet file name is 'style.css' which is appended to {@link
210  * get_stylesheet_directory_uri() stylesheet directory URI} path.
211  *
212  * @since 1.5.0
213  *
214  * @return string
215  */
216 function get_stylesheet_uri() {
217         $stylesheet_dir_uri = get_stylesheet_directory_uri();
218         $stylesheet_uri = $stylesheet_dir_uri . '/style.css';
219         /**
220          * Filter the URI of the current theme stylesheet.
221          *
222          * @since 1.5.0
223          *
224          * @param string $stylesheet_uri     Stylesheet URI for the current theme/child theme.
225          * @param string $stylesheet_dir_uri Stylesheet directory URI for the current theme/child theme.
226          */
227         return apply_filters( 'stylesheet_uri', $stylesheet_uri, $stylesheet_dir_uri );
228 }
229
230 /**
231  * Retrieve localized stylesheet URI.
232  *
233  * The stylesheet directory for the localized stylesheet files are located, by
234  * default, in the base theme directory. The name of the locale file will be the
235  * locale followed by '.css'. If that does not exist, then the text direction
236  * stylesheet will be checked for existence, for example 'ltr.css'.
237  *
238  * The theme may change the location of the stylesheet directory by either using
239  * the 'stylesheet_directory_uri' filter or the 'locale_stylesheet_uri' filter.
240  * If you want to change the location of the stylesheet files for the entire
241  * WordPress workflow, then change the former. If you just have the locale in a
242  * separate folder, then change the latter.
243  *
244  * @since 2.1.0
245  *
246  * @return string
247  */
248 function get_locale_stylesheet_uri() {
249         global $wp_locale;
250         $stylesheet_dir_uri = get_stylesheet_directory_uri();
251         $dir = get_stylesheet_directory();
252         $locale = get_locale();
253         if ( file_exists("$dir/$locale.css") )
254                 $stylesheet_uri = "$stylesheet_dir_uri/$locale.css";
255         elseif ( !empty($wp_locale->text_direction) && file_exists("$dir/{$wp_locale->text_direction}.css") )
256                 $stylesheet_uri = "$stylesheet_dir_uri/{$wp_locale->text_direction}.css";
257         else
258                 $stylesheet_uri = '';
259         /**
260          * Filter the localized stylesheet URI.
261          *
262          * @since 2.1.0
263          *
264          * @param string $stylesheet_uri     Localized stylesheet URI.
265          * @param string $stylesheet_dir_uri Stylesheet directory URI.
266          */
267         return apply_filters( 'locale_stylesheet_uri', $stylesheet_uri, $stylesheet_dir_uri );
268 }
269
270 /**
271  * Retrieve name of the current theme.
272  *
273  * @since 1.5.0
274  *
275  * @return string Template name.
276  */
277 function get_template() {
278         /**
279          * Filter the name of the current theme.
280          *
281          * @since 1.5.0
282          *
283          * @param string $template Current theme's directory name.
284          */
285         return apply_filters( 'template', get_option( 'template' ) );
286 }
287
288 /**
289  * Retrieve current theme directory.
290  *
291  * @since 1.5.0
292  *
293  * @return string Template directory path.
294  */
295 function get_template_directory() {
296         $template = get_template();
297         $theme_root = get_theme_root( $template );
298         $template_dir = "$theme_root/$template";
299
300         /**
301          * Filter the current theme directory path.
302          *
303          * @since 1.5.0
304          *
305          * @param string $template_dir The URI of the current theme directory.
306          * @param string $template     Directory name of the current theme.
307          * @param string $theme_root   Absolute path to the themes directory.
308          */
309         return apply_filters( 'template_directory', $template_dir, $template, $theme_root );
310 }
311
312 /**
313  * Retrieve theme directory URI.
314  *
315  * @since 1.5.0
316  *
317  * @return string Template directory URI.
318  */
319 function get_template_directory_uri() {
320         $template = str_replace( '%2F', '/', rawurlencode( get_template() ) );
321         $theme_root_uri = get_theme_root_uri( $template );
322         $template_dir_uri = "$theme_root_uri/$template";
323
324         /**
325          * Filter the current theme directory URI.
326          *
327          * @since 1.5.0
328          *
329          * @param string $template_dir_uri The URI of the current theme directory.
330          * @param string $template         Directory name of the current theme.
331          * @param string $theme_root_uri   The themes root URI.
332          */
333         return apply_filters( 'template_directory_uri', $template_dir_uri, $template, $theme_root_uri );
334 }
335
336 /**
337  * Retrieve theme roots.
338  *
339  * @since 2.9.0
340  *
341  * @return array|string An array of theme roots keyed by template/stylesheet or a single theme root if all themes have the same root.
342  */
343 function get_theme_roots() {
344         global $wp_theme_directories;
345
346         if ( count($wp_theme_directories) <= 1 )
347                 return '/themes';
348
349         $theme_roots = get_site_transient( 'theme_roots' );
350         if ( false === $theme_roots ) {
351                 search_theme_directories( true ); // Regenerate the transient.
352                 $theme_roots = get_site_transient( 'theme_roots' );
353         }
354         return $theme_roots;
355 }
356
357 /**
358  * Register a directory that contains themes.
359  *
360  * @since 2.9.0
361  *
362  * @param string $directory Either the full filesystem path to a theme folder or a folder within WP_CONTENT_DIR
363  * @return bool
364  */
365 function register_theme_directory( $directory ) {
366         global $wp_theme_directories;
367
368         if ( ! file_exists( $directory ) ) {
369                 // Try prepending as the theme directory could be relative to the content directory
370                 $directory = WP_CONTENT_DIR . '/' . $directory;
371                 // If this directory does not exist, return and do not register
372                 if ( ! file_exists( $directory ) ) {
373                         return false;
374                 }
375         }
376
377         if ( ! is_array( $wp_theme_directories ) ) {
378                 $wp_theme_directories = array();
379         }
380
381         $untrailed = untrailingslashit( $directory );
382         if ( ! empty( $untrailed ) && ! in_array( $untrailed, $wp_theme_directories ) ) {
383                 $wp_theme_directories[] = $untrailed;
384         }
385
386         return true;
387 }
388
389 /**
390  * Search all registered theme directories for complete and valid themes.
391  *
392  * @since 2.9.0
393  *
394  * @param bool $force Optional. Whether to force a new directory scan. Defaults to false.
395  * @return array Valid themes found
396  */
397 function search_theme_directories( $force = false ) {
398         global $wp_theme_directories;
399         if ( empty( $wp_theme_directories ) )
400                 return false;
401
402         static $found_themes;
403         if ( ! $force && isset( $found_themes ) )
404                 return $found_themes;
405
406         $found_themes = array();
407
408         $wp_theme_directories = (array) $wp_theme_directories;
409
410         // Set up maybe-relative, maybe-absolute array of theme directories.
411         // We always want to return absolute, but we need to cache relative
412         // to use in get_theme_root().
413         foreach ( $wp_theme_directories as $theme_root ) {
414                 if ( 0 === strpos( $theme_root, WP_CONTENT_DIR ) )
415                         $relative_theme_roots[ str_replace( WP_CONTENT_DIR, '', $theme_root ) ] = $theme_root;
416                 else
417                         $relative_theme_roots[ $theme_root ] = $theme_root;
418         }
419
420         /**
421          * Filter whether to get the cache of the registered theme directories.
422          *
423          * @since 3.4.0
424          *
425          * @param bool   $cache_expiration Whether to get the cache of the theme directories. Default false.
426          * @param string $cache_directory  Directory to be searched for the cache.
427          */
428         if ( $cache_expiration = apply_filters( 'wp_cache_themes_persistently', false, 'search_theme_directories' ) ) {
429                 $cached_roots = get_site_transient( 'theme_roots' );
430                 if ( is_array( $cached_roots ) ) {
431                         foreach ( $cached_roots as $theme_dir => $theme_root ) {
432                                 // A cached theme root is no longer around, so skip it.
433                                 if ( ! isset( $relative_theme_roots[ $theme_root ] ) )
434                                         continue;
435                                 $found_themes[ $theme_dir ] = array(
436                                         'theme_file' => $theme_dir . '/style.css',
437                                         'theme_root' => $relative_theme_roots[ $theme_root ], // Convert relative to absolute.
438                                 );
439                         }
440                         return $found_themes;
441                 }
442                 if ( ! is_int( $cache_expiration ) )
443                         $cache_expiration = 1800; // half hour
444         } else {
445                 $cache_expiration = 1800; // half hour
446         }
447
448         /* Loop the registered theme directories and extract all themes */
449         foreach ( $wp_theme_directories as $theme_root ) {
450
451                 // Start with directories in the root of the current theme directory.
452                 $dirs = @ scandir( $theme_root );
453                 if ( ! $dirs ) {
454                         trigger_error( "$theme_root is not readable", E_USER_NOTICE );
455                         continue;
456                 }
457                 foreach ( $dirs as $dir ) {
458                         if ( ! is_dir( $theme_root . '/' . $dir ) || $dir[0] == '.' || $dir == 'CVS' )
459                                 continue;
460                         if ( file_exists( $theme_root . '/' . $dir . '/style.css' ) ) {
461                                 // wp-content/themes/a-single-theme
462                                 // wp-content/themes is $theme_root, a-single-theme is $dir
463                                 $found_themes[ $dir ] = array(
464                                         'theme_file' => $dir . '/style.css',
465                                         'theme_root' => $theme_root,
466                                 );
467                         } else {
468                                 $found_theme = false;
469                                 // wp-content/themes/a-folder-of-themes/*
470                                 // wp-content/themes is $theme_root, a-folder-of-themes is $dir, then themes are $sub_dirs
471                                 $sub_dirs = @ scandir( $theme_root . '/' . $dir );
472                                 if ( ! $sub_dirs ) {
473                                         trigger_error( "$theme_root/$dir is not readable", E_USER_NOTICE );
474                                         continue;
475                                 }
476                                 foreach ( $sub_dirs as $sub_dir ) {
477                                         if ( ! is_dir( $theme_root . '/' . $dir . '/' . $sub_dir ) || $dir[0] == '.' || $dir == 'CVS' )
478                                                 continue;
479                                         if ( ! file_exists( $theme_root . '/' . $dir . '/' . $sub_dir . '/style.css' ) )
480                                                 continue;
481                                         $found_themes[ $dir . '/' . $sub_dir ] = array(
482                                                 'theme_file' => $dir . '/' . $sub_dir . '/style.css',
483                                                 'theme_root' => $theme_root,
484                                         );
485                                         $found_theme = true;
486                                 }
487                                 // Never mind the above, it's just a theme missing a style.css.
488                                 // Return it; WP_Theme will catch the error.
489                                 if ( ! $found_theme )
490                                         $found_themes[ $dir ] = array(
491                                                 'theme_file' => $dir . '/style.css',
492                                                 'theme_root' => $theme_root,
493                                         );
494                         }
495                 }
496         }
497
498         asort( $found_themes );
499
500         $theme_roots = array();
501         $relative_theme_roots = array_flip( $relative_theme_roots );
502
503         foreach ( $found_themes as $theme_dir => $theme_data ) {
504                 $theme_roots[ $theme_dir ] = $relative_theme_roots[ $theme_data['theme_root'] ]; // Convert absolute to relative.
505         }
506
507         if ( $theme_roots != get_site_transient( 'theme_roots' ) )
508                 set_site_transient( 'theme_roots', $theme_roots, $cache_expiration );
509
510         return $found_themes;
511 }
512
513 /**
514  * Retrieve path to themes directory.
515  *
516  * Does not have trailing slash.
517  *
518  * @since 1.5.0
519  *
520  * @param string $stylesheet_or_template The stylesheet or template name of the theme
521  * @return string Theme path.
522  */
523 function get_theme_root( $stylesheet_or_template = false ) {
524         global $wp_theme_directories;
525
526         if ( $stylesheet_or_template && $theme_root = get_raw_theme_root( $stylesheet_or_template ) ) {
527                 // Always prepend WP_CONTENT_DIR unless the root currently registered as a theme directory.
528                 // This gives relative theme roots the benefit of the doubt when things go haywire.
529                 if ( ! in_array( $theme_root, (array) $wp_theme_directories ) )
530                         $theme_root = WP_CONTENT_DIR . $theme_root;
531         } else {
532                 $theme_root = WP_CONTENT_DIR . '/themes';
533         }
534
535         /**
536          * Filter the absolute path to the themes directory.
537          *
538          * @since 1.5.0
539          *
540          * @param string $theme_root Absolute path to themes directory.
541          */
542         return apply_filters( 'theme_root', $theme_root );
543 }
544
545 /**
546  * Retrieve URI for themes directory.
547  *
548  * Does not have trailing slash.
549  *
550  * @since 1.5.0
551  *
552  * @param string $stylesheet_or_template Optional. The stylesheet or template name of the theme.
553  *      Default is to leverage the main theme root.
554  * @param string $theme_root Optional. The theme root for which calculations will be based, preventing
555  *      the need for a get_raw_theme_root() call.
556  * @return string Themes URI.
557  */
558 function get_theme_root_uri( $stylesheet_or_template = false, $theme_root = false ) {
559         global $wp_theme_directories;
560
561         if ( $stylesheet_or_template && ! $theme_root )
562                 $theme_root = get_raw_theme_root( $stylesheet_or_template );
563
564         if ( $stylesheet_or_template && $theme_root ) {
565                 if ( in_array( $theme_root, (array) $wp_theme_directories ) ) {
566                         // Absolute path. Make an educated guess. YMMV -- but note the filter below.
567                         if ( 0 === strpos( $theme_root, WP_CONTENT_DIR ) )
568                                 $theme_root_uri = content_url( str_replace( WP_CONTENT_DIR, '', $theme_root ) );
569                         elseif ( 0 === strpos( $theme_root, ABSPATH ) )
570                                 $theme_root_uri = site_url( str_replace( ABSPATH, '', $theme_root ) );
571                         elseif ( 0 === strpos( $theme_root, WP_PLUGIN_DIR ) || 0 === strpos( $theme_root, WPMU_PLUGIN_DIR ) )
572                                 $theme_root_uri = plugins_url( basename( $theme_root ), $theme_root );
573                         else
574                                 $theme_root_uri = $theme_root;
575                 } else {
576                         $theme_root_uri = content_url( $theme_root );
577                 }
578         } else {
579                 $theme_root_uri = content_url( 'themes' );
580         }
581
582         /**
583          * Filter the URI for themes directory.
584          *
585          * @since 1.5.0
586          *
587          * @param string $theme_root_uri         The URI for themes directory.
588          * @param string $siteurl                WordPress web address which is set in General Options.
589          * @param string $stylesheet_or_template Stylesheet or template name of the theme.
590          */
591         return apply_filters( 'theme_root_uri', $theme_root_uri, get_option( 'siteurl' ), $stylesheet_or_template );
592 }
593
594 /**
595  * Get the raw theme root relative to the content directory with no filters applied.
596  *
597  * @since 3.1.0
598  *
599  * @param string $stylesheet_or_template The stylesheet or template name of the theme
600  * @param bool $skip_cache Optional. Whether to skip the cache. Defaults to false, meaning the cache is used.
601  * @return string Theme root
602  */
603 function get_raw_theme_root( $stylesheet_or_template, $skip_cache = false ) {
604         global $wp_theme_directories;
605
606         if ( count($wp_theme_directories) <= 1 )
607                 return '/themes';
608
609         $theme_root = false;
610
611         // If requesting the root for the current theme, consult options to avoid calling get_theme_roots()
612         if ( ! $skip_cache ) {
613                 if ( get_option('stylesheet') == $stylesheet_or_template )
614                         $theme_root = get_option('stylesheet_root');
615                 elseif ( get_option('template') == $stylesheet_or_template )
616                         $theme_root = get_option('template_root');
617         }
618
619         if ( empty($theme_root) ) {
620                 $theme_roots = get_theme_roots();
621                 if ( !empty($theme_roots[$stylesheet_or_template]) )
622                         $theme_root = $theme_roots[$stylesheet_or_template];
623         }
624
625         return $theme_root;
626 }
627
628 /**
629  * Display localized stylesheet link element.
630  *
631  * @since 2.1.0
632  */
633 function locale_stylesheet() {
634         $stylesheet = get_locale_stylesheet_uri();
635         if ( empty($stylesheet) )
636                 return;
637         echo '<link rel="stylesheet" href="' . $stylesheet . '" type="text/css" media="screen" />';
638 }
639
640 /**
641  * Start preview theme output buffer.
642  *
643  * Will only perform task if the user has permissions and template and preview
644  * query variables exist.
645  *
646  * @since 2.6.0
647  */
648 function preview_theme() {
649         if ( ! (isset($_GET['template']) && isset($_GET['preview'])) )
650                 return;
651
652         if ( !current_user_can( 'switch_themes' ) )
653                 return;
654
655         // Admin Thickbox requests
656         if ( isset( $_GET['preview_iframe'] ) )
657                 show_admin_bar( false );
658
659         $_GET['template'] = preg_replace('|[^a-z0-9_./-]|i', '', $_GET['template']);
660
661         if ( validate_file($_GET['template']) )
662                 return;
663
664         add_filter( 'template', '_preview_theme_template_filter' );
665
666         if ( isset($_GET['stylesheet']) ) {
667                 $_GET['stylesheet'] = preg_replace('|[^a-z0-9_./-]|i', '', $_GET['stylesheet']);
668                 if ( validate_file($_GET['stylesheet']) )
669                         return;
670                 add_filter( 'stylesheet', '_preview_theme_stylesheet_filter' );
671         }
672
673         // Prevent theme mods to current theme being used on theme being previewed
674         add_filter( 'pre_option_theme_mods_' . get_option( 'stylesheet' ), '__return_empty_array' );
675
676         ob_start( 'preview_theme_ob_filter' );
677 }
678 add_action('setup_theme', 'preview_theme');
679
680 /**
681  * Private function to modify the current template when previewing a theme
682  *
683  * @since 2.9.0
684  * @access private
685  *
686  * @return string
687  */
688 function _preview_theme_template_filter() {
689         return isset($_GET['template']) ? $_GET['template'] : '';
690 }
691
692 /**
693  * Private function to modify the current stylesheet when previewing a theme
694  *
695  * @since 2.9.0
696  * @access private
697  *
698  * @return string
699  */
700 function _preview_theme_stylesheet_filter() {
701         return isset($_GET['stylesheet']) ? $_GET['stylesheet'] : '';
702 }
703
704 /**
705  * Callback function for ob_start() to capture all links in the theme.
706  *
707  * @since 2.6.0
708  * @access private
709  *
710  * @param string $content
711  * @return string
712  */
713 function preview_theme_ob_filter( $content ) {
714         return preg_replace_callback( "|(<a.*?href=([\"']))(.*?)([\"'].*?>)|", 'preview_theme_ob_filter_callback', $content );
715 }
716
717 /**
718  * Manipulates preview theme links in order to control and maintain location.
719  *
720  * Callback function for preg_replace_callback() to accept and filter matches.
721  *
722  * @since 2.6.0
723  * @access private
724  *
725  * @param array $matches
726  * @return string
727  */
728 function preview_theme_ob_filter_callback( $matches ) {
729         if ( strpos($matches[4], 'onclick') !== false )
730                 $matches[4] = preg_replace('#onclick=([\'"]).*?(?<!\\\)\\1#i', '', $matches[4]); //Strip out any onclicks from rest of <a>. (?<!\\\) means to ignore the '" if it's escaped by \  to prevent breaking mid-attribute.
731         if (
732                 ( false !== strpos($matches[3], '/wp-admin/') )
733         ||
734                 ( false !== strpos( $matches[3], '://' ) && 0 !== strpos( $matches[3], home_url() ) )
735         ||
736                 ( false !== strpos($matches[3], '/feed/') )
737         ||
738                 ( false !== strpos($matches[3], '/trackback/') )
739         )
740                 return $matches[1] . "#$matches[2] onclick=$matches[2]return false;" . $matches[4];
741
742         $stylesheet = isset( $_GET['stylesheet'] ) ? $_GET['stylesheet'] : '';
743         $template   = isset( $_GET['template'] )   ? $_GET['template']   : '';
744
745         $link = add_query_arg( array( 'preview' => 1, 'template' => $template, 'stylesheet' => $stylesheet, 'preview_iframe' => 1 ), $matches[3] );
746         if ( 0 === strpos($link, 'preview=1') )
747                 $link = "?$link";
748         return $matches[1] . esc_attr( $link ) . $matches[4];
749 }
750
751 /**
752  * Switches the theme.
753  *
754  * Accepts one argument: $stylesheet of the theme. It also accepts an additional function signature
755  * of two arguments: $template then $stylesheet. This is for backwards compatibility.
756  *
757  * @since 2.5.0
758  *
759  * @param string $stylesheet Stylesheet name
760  */
761 function switch_theme( $stylesheet ) {
762         global $wp_theme_directories, $wp_customize, $sidebars_widgets;
763
764         $_sidebars_widgets = null;
765         if ( 'wp_ajax_customize_save' === current_action() ) {
766                 $_sidebars_widgets = $wp_customize->post_value( $wp_customize->get_setting( 'old_sidebars_widgets_data' ) );
767         } elseif ( is_array( $sidebars_widgets ) ) {
768                 $_sidebars_widgets = $sidebars_widgets;
769         }
770
771         if ( is_array( $_sidebars_widgets ) ) {
772                 set_theme_mod( 'sidebars_widgets', array( 'time' => time(), 'data' => $_sidebars_widgets ) );
773         }
774
775         $old_theme  = wp_get_theme();
776         $new_theme = wp_get_theme( $stylesheet );
777
778         if ( func_num_args() > 1 ) {
779                 $template = $stylesheet;
780                 $stylesheet = func_get_arg( 1 );
781         } else {
782                 $template = $new_theme->get_template();
783         }
784
785         update_option( 'template', $template );
786         update_option( 'stylesheet', $stylesheet );
787
788         if ( count( $wp_theme_directories ) > 1 ) {
789                 update_option( 'template_root', get_raw_theme_root( $template, true ) );
790                 update_option( 'stylesheet_root', get_raw_theme_root( $stylesheet, true ) );
791         } else {
792                 delete_option( 'template_root' );
793                 delete_option( 'stylesheet_root' );
794         }
795
796         $new_name  = $new_theme->get('Name');
797
798         update_option( 'current_theme', $new_name );
799
800         // Migrate from the old mods_{name} option to theme_mods_{slug}.
801         if ( is_admin() && false === get_option( 'theme_mods_' . $stylesheet ) ) {
802                 $default_theme_mods = (array) get_option( 'mods_' . $new_name );
803                 add_option( "theme_mods_$stylesheet", $default_theme_mods );
804         } else {
805                 /*
806                  * Since retrieve_widgets() is called when initializing a theme in the Customizer,
807                  * we need to to remove the theme mods to avoid overwriting changes made via
808                  * the Customizer when accessing wp-admin/widgets.php.
809                  */
810                 if ( 'wp_ajax_customize_save' === current_action() ) {
811                         remove_theme_mod( 'sidebars_widgets' );
812                 }
813         }
814
815         update_option( 'theme_switched', $old_theme->get_stylesheet() );
816         /**
817          * Fires after the theme is switched.
818          *
819          * @since 1.5.0
820          *
821          * @param string   $new_name  Name of the new theme.
822          * @param WP_Theme $new_theme WP_Theme instance of the new theme.
823          */
824         do_action( 'switch_theme', $new_name, $new_theme );
825 }
826
827 /**
828  * Checks that current theme files 'index.php' and 'style.css' exists.
829  *
830  * Does not check the default theme, which is the fallback and should always exist.
831  * Will switch theme to the fallback theme if current theme does not validate.
832  * You can use the 'validate_current_theme' filter to return false to
833  * disable this functionality.
834  *
835  * @since 1.5.0
836  * @see WP_DEFAULT_THEME
837  *
838  * @return bool
839  */
840 function validate_current_theme() {
841         /**
842          * Filter whether to validate the current theme.
843          *
844          * @since 2.7.0
845          *
846          * @param bool true Validation flag to check the current theme.
847          */
848         if ( defined('WP_INSTALLING') || ! apply_filters( 'validate_current_theme', true ) )
849                 return true;
850
851         if ( get_template() != WP_DEFAULT_THEME && !file_exists(get_template_directory() . '/index.php') ) {
852                 switch_theme( WP_DEFAULT_THEME );
853                 return false;
854         }
855
856         if ( get_stylesheet() != WP_DEFAULT_THEME && !file_exists(get_template_directory() . '/style.css') ) {
857                 switch_theme( WP_DEFAULT_THEME );
858                 return false;
859         }
860
861         if ( is_child_theme() && ! file_exists( get_stylesheet_directory() . '/style.css' ) ) {
862                 switch_theme( WP_DEFAULT_THEME );
863                 return false;
864         }
865
866         return true;
867 }
868
869 /**
870  * Retrieve all theme modifications.
871  *
872  * @since 3.1.0
873  *
874  * @return array|null Theme modifications.
875  */
876 function get_theme_mods() {
877         $theme_slug = get_option( 'stylesheet' );
878         if ( false === ( $mods = get_option( "theme_mods_$theme_slug" ) ) ) {
879                 $theme_name = get_option( 'current_theme' );
880                 if ( false === $theme_name )
881                         $theme_name = wp_get_theme()->get('Name');
882                 $mods = get_option( "mods_$theme_name" ); // Deprecated location.
883                 if ( is_admin() && false !== $mods ) {
884                         update_option( "theme_mods_$theme_slug", $mods );
885                         delete_option( "mods_$theme_name" );
886                 }
887         }
888         return $mods;
889 }
890
891 /**
892  * Retrieve theme modification value for the current theme.
893  *
894  * If the modification name does not exist, then the $default will be passed
895  * through {@link http://php.net/sprintf sprintf()} PHP function with the first
896  * string the template directory URI and the second string the stylesheet
897  * directory URI.
898  *
899  * @since 2.1.0
900  *
901  * @param string $name Theme modification name.
902  * @param bool|string $default
903  * @return string
904  */
905 function get_theme_mod( $name, $default = false ) {
906         $mods = get_theme_mods();
907
908         if ( isset( $mods[$name] ) ) {
909                 /**
910                  * Filter the theme modification, or 'theme_mod', value.
911                  *
912                  * The dynamic portion of the hook name, `$name`, refers to
913                  * the key name of the modification array. For example,
914                  * 'header_textcolor', 'header_image', and so on depending
915                  * on the theme options.
916                  *
917                  * @since 2.2.0
918                  *
919                  * @param string $current_mod The value of the current theme modification.
920                  */
921                 return apply_filters( "theme_mod_{$name}", $mods[$name] );
922         }
923
924         if ( is_string( $default ) )
925                 $default = sprintf( $default, get_template_directory_uri(), get_stylesheet_directory_uri() );
926
927         /** This filter is documented in wp-includes/theme.php */
928         return apply_filters( "theme_mod_{$name}", $default );
929 }
930
931 /**
932  * Update theme modification value for the current theme.
933  *
934  * @since 2.1.0
935  *
936  * @param string $name Theme modification name.
937  * @param string $value theme modification value.
938  */
939 function set_theme_mod( $name, $value ) {
940         $mods = get_theme_mods();
941         $old_value = isset( $mods[ $name ] ) ? $mods[ $name ] : false;
942
943         /**
944          * Filter the theme mod value on save.
945          *
946          * The dynamic portion of the hook name, `$name`, refers to the key name of
947          * the modification array. For example, 'header_textcolor', 'header_image',
948          * and so on depending on the theme options.
949          *
950          * @since 3.9.0
951          *
952          * @param string $value     The new value of the theme mod.
953          * @param string $old_value The current value of the theme mod.
954          */
955         $mods[ $name ] = apply_filters( "pre_set_theme_mod_$name", $value, $old_value );
956
957         $theme = get_option( 'stylesheet' );
958         update_option( "theme_mods_$theme", $mods );
959 }
960
961 /**
962  * Remove theme modification name from current theme list.
963  *
964  * If removing the name also removes all elements, then the entire option will
965  * be removed.
966  *
967  * @since 2.1.0
968  *
969  * @param string $name Theme modification name.
970  * @return null
971  */
972 function remove_theme_mod( $name ) {
973         $mods = get_theme_mods();
974
975         if ( ! isset( $mods[ $name ] ) )
976                 return;
977
978         unset( $mods[ $name ] );
979
980         if ( empty( $mods ) )
981                 return remove_theme_mods();
982
983         $theme = get_option( 'stylesheet' );
984         update_option( "theme_mods_$theme", $mods );
985 }
986
987 /**
988  * Remove theme modifications option for current theme.
989  *
990  * @since 2.1.0
991  */
992 function remove_theme_mods() {
993         delete_option( 'theme_mods_' . get_option( 'stylesheet' ) );
994
995         // Old style.
996         $theme_name = get_option( 'current_theme' );
997         if ( false === $theme_name )
998                 $theme_name = wp_get_theme()->get('Name');
999         delete_option( 'mods_' . $theme_name );
1000 }
1001
1002 /**
1003  * Retrieve text color for custom header.
1004  *
1005  * @since 2.1.0
1006  *
1007  * @return string
1008  */
1009 function get_header_textcolor() {
1010         return get_theme_mod('header_textcolor', get_theme_support( 'custom-header', 'default-text-color' ) );
1011 }
1012
1013 /**
1014  * Display text color for custom header.
1015  *
1016  * @since 2.1.0
1017  */
1018 function header_textcolor() {
1019         echo get_header_textcolor();
1020 }
1021
1022 /**
1023  * Whether to display the header text.
1024  *
1025  * @since 3.4.0
1026  *
1027  * @return bool
1028  */
1029 function display_header_text() {
1030         if ( ! current_theme_supports( 'custom-header', 'header-text' ) )
1031                 return false;
1032
1033         $text_color = get_theme_mod( 'header_textcolor', get_theme_support( 'custom-header', 'default-text-color' ) );
1034         return 'blank' != $text_color;
1035 }
1036
1037 /**
1038  * Retrieve header image for custom header.
1039  *
1040  * @since 2.1.0
1041  *
1042  * @return string
1043  */
1044 function get_header_image() {
1045         $url = get_theme_mod( 'header_image', get_theme_support( 'custom-header', 'default-image' ) );
1046
1047         if ( 'remove-header' == $url )
1048                 return false;
1049
1050         if ( is_random_header_image() )
1051                 $url = get_random_header_image();
1052
1053         return esc_url_raw( set_url_scheme( $url ) );
1054 }
1055
1056 /**
1057  * Get random header image data from registered images in theme.
1058  *
1059  * @since 3.4.0
1060  *
1061  * @access private
1062  *
1063  * @return string Path to header image
1064  */
1065
1066 function _get_random_header_data() {
1067         static $_wp_random_header;
1068
1069         if ( empty( $_wp_random_header ) ) {
1070                 global $_wp_default_headers;
1071                 $header_image_mod = get_theme_mod( 'header_image', '' );
1072                 $headers = array();
1073
1074                 if ( 'random-uploaded-image' == $header_image_mod )
1075                         $headers = get_uploaded_header_images();
1076                 elseif ( ! empty( $_wp_default_headers ) ) {
1077                         if ( 'random-default-image' == $header_image_mod ) {
1078                                 $headers = $_wp_default_headers;
1079                         } else {
1080                                 if ( current_theme_supports( 'custom-header', 'random-default' ) )
1081                                         $headers = $_wp_default_headers;
1082                         }
1083                 }
1084
1085                 if ( empty( $headers ) )
1086                         return new stdClass;
1087
1088                 $_wp_random_header = (object) $headers[ array_rand( $headers ) ];
1089
1090                 $_wp_random_header->url =  sprintf( $_wp_random_header->url, get_template_directory_uri(), get_stylesheet_directory_uri() );
1091                 $_wp_random_header->thumbnail_url =  sprintf( $_wp_random_header->thumbnail_url, get_template_directory_uri(), get_stylesheet_directory_uri() );
1092         }
1093         return $_wp_random_header;
1094 }
1095
1096 /**
1097  * Get random header image url from registered images in theme.
1098  *
1099  * @since 3.2.0
1100  *
1101  * @return string Path to header image
1102  */
1103
1104 function get_random_header_image() {
1105         $random_image = _get_random_header_data();
1106         if ( empty( $random_image->url ) )
1107                 return '';
1108         return $random_image->url;
1109 }
1110
1111 /**
1112  * Check if random header image is in use.
1113  *
1114  * Always true if user expressly chooses the option in Appearance > Header.
1115  * Also true if theme has multiple header images registered, no specific header image
1116  * is chosen, and theme turns on random headers with add_theme_support().
1117  *
1118  * @since 3.2.0
1119  *
1120  * @param string $type The random pool to use. any|default|uploaded
1121  * @return boolean
1122  */
1123 function is_random_header_image( $type = 'any' ) {
1124         $header_image_mod = get_theme_mod( 'header_image', get_theme_support( 'custom-header', 'default-image' ) );
1125
1126         if ( 'any' == $type ) {
1127                 if ( 'random-default-image' == $header_image_mod || 'random-uploaded-image' == $header_image_mod || ( '' != get_random_header_image() && empty( $header_image_mod ) ) )
1128                         return true;
1129         } else {
1130                 if ( "random-$type-image" == $header_image_mod )
1131                         return true;
1132                 elseif ( 'default' == $type && empty( $header_image_mod ) && '' != get_random_header_image() )
1133                         return true;
1134         }
1135
1136         return false;
1137 }
1138
1139 /**
1140  * Display header image URL.
1141  *
1142  * @since 2.1.0
1143  */
1144 function header_image() {
1145         echo esc_url( get_header_image() );
1146 }
1147
1148 /**
1149  * Get the header images uploaded for the current theme.
1150  *
1151  * @since 3.2.0
1152  *
1153  * @return array
1154  */
1155 function get_uploaded_header_images() {
1156         $header_images = array();
1157
1158         // @todo caching
1159         $headers = get_posts( array( 'post_type' => 'attachment', 'meta_key' => '_wp_attachment_is_custom_header', 'meta_value' => get_option('stylesheet'), 'orderby' => 'none', 'nopaging' => true ) );
1160
1161         if ( empty( $headers ) )
1162                 return array();
1163
1164         foreach ( (array) $headers as $header ) {
1165                 $url = esc_url_raw( wp_get_attachment_url( $header->ID ) );
1166                 $header_data = wp_get_attachment_metadata( $header->ID );
1167                 $header_index = basename($url);
1168                 $header_images[$header_index] = array();
1169                 $header_images[$header_index]['attachment_id'] =  $header->ID;
1170                 $header_images[$header_index]['url'] =  $url;
1171                 $header_images[$header_index]['thumbnail_url'] =  $url;
1172                 if ( isset( $header_data['width'] ) )
1173                         $header_images[$header_index]['width'] = $header_data['width'];
1174                 if ( isset( $header_data['height'] ) )
1175                         $header_images[$header_index]['height'] = $header_data['height'];
1176         }
1177
1178         return $header_images;
1179 }
1180
1181 /**
1182  * Get the header image data.
1183  *
1184  * @since 3.4.0
1185  *
1186  * @return object
1187  */
1188 function get_custom_header() {
1189         global $_wp_default_headers;
1190
1191         if ( is_random_header_image() ) {
1192                 $data = _get_random_header_data();
1193         } else {
1194                 $data = get_theme_mod( 'header_image_data' );
1195                 if ( ! $data && current_theme_supports( 'custom-header', 'default-image' ) ) {
1196                         $directory_args = array( get_template_directory_uri(), get_stylesheet_directory_uri() );
1197                         $data = array();
1198                         $data['url'] = $data['thumbnail_url'] = vsprintf( get_theme_support( 'custom-header', 'default-image' ), $directory_args );
1199                         if ( ! empty( $_wp_default_headers ) ) {
1200                                 foreach ( (array) $_wp_default_headers as $default_header ) {
1201                                         $url = vsprintf( $default_header['url'], $directory_args );
1202                                         if ( $data['url'] == $url ) {
1203                                                 $data = $default_header;
1204                                                 $data['url'] = $url;
1205                                                 $data['thumbnail_url'] = vsprintf( $data['thumbnail_url'], $directory_args );
1206                                                 break;
1207                                         }
1208                                 }
1209                         }
1210                 }
1211         }
1212
1213         $default = array(
1214                 'url'           => '',
1215                 'thumbnail_url' => '',
1216                 'width'         => get_theme_support( 'custom-header', 'width' ),
1217                 'height'        => get_theme_support( 'custom-header', 'height' ),
1218         );
1219         return (object) wp_parse_args( $data, $default );
1220 }
1221
1222 /**
1223  * Register a selection of default headers to be displayed by the custom header admin UI.
1224  *
1225  * @since 3.0.0
1226  *
1227  * @param array $headers Array of headers keyed by a string id. The ids point to arrays containing 'url', 'thumbnail_url', and 'description' keys.
1228  */
1229 function register_default_headers( $headers ) {
1230         global $_wp_default_headers;
1231
1232         $_wp_default_headers = array_merge( (array) $_wp_default_headers, (array) $headers );
1233 }
1234
1235 /**
1236  * Unregister default headers.
1237  *
1238  * This function must be called after register_default_headers() has already added the
1239  * header you want to remove.
1240  *
1241  * @see register_default_headers()
1242  * @since 3.0.0
1243  *
1244  * @param string|array $header The header string id (key of array) to remove, or an array thereof.
1245  * @return bool|void A single header returns true on success, false on failure.
1246  *                   There is currently no return value for multiple headers.
1247  */
1248 function unregister_default_headers( $header ) {
1249         global $_wp_default_headers;
1250         if ( is_array( $header ) ) {
1251                 array_map( 'unregister_default_headers', $header );
1252         } elseif ( isset( $_wp_default_headers[ $header ] ) ) {
1253                 unset( $_wp_default_headers[ $header ] );
1254                 return true;
1255         } else {
1256                 return false;
1257         }
1258 }
1259
1260 /**
1261  * Retrieve background image for custom background.
1262  *
1263  * @since 3.0.0
1264  *
1265  * @return string
1266  */
1267 function get_background_image() {
1268         return get_theme_mod('background_image', get_theme_support( 'custom-background', 'default-image' ) );
1269 }
1270
1271 /**
1272  * Display background image path.
1273  *
1274  * @since 3.0.0
1275  */
1276 function background_image() {
1277         echo get_background_image();
1278 }
1279
1280 /**
1281  * Retrieve value for custom background color.
1282  *
1283  * @since 3.0.0
1284  *
1285  * @return string
1286  */
1287 function get_background_color() {
1288         return get_theme_mod('background_color', get_theme_support( 'custom-background', 'default-color' ) );
1289 }
1290
1291 /**
1292  * Display background color value.
1293  *
1294  * @since 3.0.0
1295  */
1296 function background_color() {
1297         echo get_background_color();
1298 }
1299
1300 /**
1301  * Default custom background callback.
1302  *
1303  * @since 3.0.0
1304  * @access protected
1305  */
1306 function _custom_background_cb() {
1307         // $background is the saved custom image, or the default image.
1308         $background = set_url_scheme( get_background_image() );
1309
1310         // $color is the saved custom color.
1311         // A default has to be specified in style.css. It will not be printed here.
1312         $color = get_background_color();
1313
1314         if ( $color === get_theme_support( 'custom-background', 'default-color' ) ) {
1315                 $color = false;
1316         }
1317
1318         if ( ! $background && ! $color )
1319                 return;
1320
1321         $style = $color ? "background-color: #$color;" : '';
1322
1323         if ( $background ) {
1324                 $image = " background-image: url('$background');";
1325
1326                 $repeat = get_theme_mod( 'background_repeat', get_theme_support( 'custom-background', 'default-repeat' ) );
1327                 if ( ! in_array( $repeat, array( 'no-repeat', 'repeat-x', 'repeat-y', 'repeat' ) ) )
1328                         $repeat = 'repeat';
1329                 $repeat = " background-repeat: $repeat;";
1330
1331                 $position = get_theme_mod( 'background_position_x', get_theme_support( 'custom-background', 'default-position-x' ) );
1332                 if ( ! in_array( $position, array( 'center', 'right', 'left' ) ) )
1333                         $position = 'left';
1334                 $position = " background-position: top $position;";
1335
1336                 $attachment = get_theme_mod( 'background_attachment', get_theme_support( 'custom-background', 'default-attachment' ) );
1337                 if ( ! in_array( $attachment, array( 'fixed', 'scroll' ) ) )
1338                         $attachment = 'scroll';
1339                 $attachment = " background-attachment: $attachment;";
1340
1341                 $style .= $image . $repeat . $position . $attachment;
1342         }
1343 ?>
1344 <style type="text/css" id="custom-background-css">
1345 body.custom-background { <?php echo trim( $style ); ?> }
1346 </style>
1347 <?php
1348 }
1349
1350 /**
1351  * Add callback for custom TinyMCE editor stylesheets.
1352  *
1353  * The parameter $stylesheet is the name of the stylesheet, relative to
1354  * the theme root. It also accepts an array of stylesheets.
1355  * It is optional and defaults to 'editor-style.css'.
1356  *
1357  * This function automatically adds another stylesheet with -rtl prefix, e.g. editor-style-rtl.css.
1358  * If that file doesn't exist, it is removed before adding the stylesheet(s) to TinyMCE.
1359  * If an array of stylesheets is passed to add_editor_style(),
1360  * RTL is only added for the first stylesheet.
1361  *
1362  * Since version 3.4 the TinyMCE body has .rtl CSS class.
1363  * It is a better option to use that class and add any RTL styles to the main stylesheet.
1364  *
1365  * @since 3.0.0
1366  *
1367  * @param array|string $stylesheet Optional. Stylesheet name or array thereof, relative to theme root.
1368  *      Defaults to 'editor-style.css'
1369  */
1370 function add_editor_style( $stylesheet = 'editor-style.css' ) {
1371
1372         add_theme_support( 'editor-style' );
1373
1374         if ( ! is_admin() )
1375                 return;
1376
1377         global $editor_styles;
1378         $editor_styles = (array) $editor_styles;
1379         $stylesheet    = (array) $stylesheet;
1380         if ( is_rtl() ) {
1381                 $rtl_stylesheet = str_replace('.css', '-rtl.css', $stylesheet[0]);
1382                 $stylesheet[] = $rtl_stylesheet;
1383         }
1384
1385         $editor_styles = array_merge( $editor_styles, $stylesheet );
1386 }
1387
1388 /**
1389  * Removes all visual editor stylesheets.
1390  *
1391  * @since 3.1.0
1392  *
1393  * @return bool True on success, false if there were no stylesheets to remove.
1394  */
1395 function remove_editor_styles() {
1396         if ( ! current_theme_supports( 'editor-style' ) )
1397                 return false;
1398         _remove_theme_support( 'editor-style' );
1399         if ( is_admin() )
1400                 $GLOBALS['editor_styles'] = array();
1401         return true;
1402 }
1403
1404 /**
1405  * Retrieve any registered editor stylesheets
1406  *
1407  * @since 4.0.0
1408  *
1409  * @global $editor_styles Registered editor stylesheets
1410  *
1411  * @return array If registered, a list of editor stylesheet URLs.
1412  */
1413 function get_editor_stylesheets() {
1414         $stylesheets = array();
1415         // load editor_style.css if the current theme supports it
1416         if ( ! empty( $GLOBALS['editor_styles'] ) && is_array( $GLOBALS['editor_styles'] ) ) {
1417                 $editor_styles = $GLOBALS['editor_styles'];
1418
1419                 $editor_styles = array_unique( array_filter( $editor_styles ) );
1420                 $style_uri = get_stylesheet_directory_uri();
1421                 $style_dir = get_stylesheet_directory();
1422
1423                 // Support externally referenced styles (like, say, fonts).
1424                 foreach ( $editor_styles as $key => $file ) {
1425                         if ( preg_match( '~^(https?:)?//~', $file ) ) {
1426                                 $stylesheets[] = esc_url_raw( $file );
1427                                 unset( $editor_styles[ $key ] );
1428                         }
1429                 }
1430
1431                 // Look in a parent theme first, that way child theme CSS overrides.
1432                 if ( is_child_theme() ) {
1433                         $template_uri = get_template_directory_uri();
1434                         $template_dir = get_template_directory();
1435
1436                         foreach ( $editor_styles as $key => $file ) {
1437                                 if ( $file && file_exists( "$template_dir/$file" ) ) {
1438                                         $stylesheets[] = "$template_uri/$file";
1439                                 }
1440                         }
1441                 }
1442
1443                 foreach ( $editor_styles as $file ) {
1444                         if ( $file && file_exists( "$style_dir/$file" ) ) {
1445                                 $stylesheets[] = "$style_uri/$file";
1446                         }
1447                 }
1448         }
1449         return $stylesheets;
1450 }
1451
1452 /**
1453  * Allows a theme to register its support of a certain feature
1454  *
1455  * Must be called in the theme's functions.php file to work.
1456  * If attached to a hook, it must be after_setup_theme.
1457  * The init hook may be too late for some features.
1458  *
1459  * @since 2.9.0
1460  *
1461  * @param string $feature The feature being added.
1462  * @return void|bool False on failure, void otherwise.
1463  */
1464 function add_theme_support( $feature ) {
1465         global $_wp_theme_features;
1466
1467         if ( func_num_args() == 1 )
1468                 $args = true;
1469         else
1470                 $args = array_slice( func_get_args(), 1 );
1471
1472         switch ( $feature ) {
1473                 case 'post-formats' :
1474                         if ( is_array( $args[0] ) ) {
1475                                 $post_formats = get_post_format_slugs();
1476                                 unset( $post_formats['standard'] );
1477
1478                                 $args[0] = array_intersect( $args[0], array_keys( $post_formats ) );
1479                         }
1480                         break;
1481
1482                 case 'html5' :
1483                         // You can't just pass 'html5', you need to pass an array of types.
1484                         if ( empty( $args[0] ) ) {
1485                                 // Build an array of types for back-compat.
1486                                 $args = array( 0 => array( 'comment-list', 'comment-form', 'search-form' ) );
1487                         } elseif ( ! is_array( $args[0] ) ) {
1488                                 _doing_it_wrong( "add_theme_support( 'html5' )", __( 'You need to pass an array of types.' ), '3.6.1' );
1489                                 return false;
1490                         }
1491
1492                         // Calling 'html5' again merges, rather than overwrites.
1493                         if ( isset( $_wp_theme_features['html5'] ) )
1494                                 $args[0] = array_merge( $_wp_theme_features['html5'][0], $args[0] );
1495                         break;
1496
1497                 case 'custom-header-uploads' :
1498                         return add_theme_support( 'custom-header', array( 'uploads' => true ) );
1499
1500                 case 'custom-header' :
1501                         if ( ! is_array( $args ) )
1502                                 $args = array( 0 => array() );
1503
1504                         $defaults = array(
1505                                 'default-image' => '',
1506                                 'random-default' => false,
1507                                 'width' => 0,
1508                                 'height' => 0,
1509                                 'flex-height' => false,
1510                                 'flex-width' => false,
1511                                 'default-text-color' => '',
1512                                 'header-text' => true,
1513                                 'uploads' => true,
1514                                 'wp-head-callback' => '',
1515                                 'admin-head-callback' => '',
1516                                 'admin-preview-callback' => '',
1517                         );
1518
1519                         $jit = isset( $args[0]['__jit'] );
1520                         unset( $args[0]['__jit'] );
1521
1522                         // Merge in data from previous add_theme_support() calls.
1523                         // The first value registered wins. (A child theme is set up first.)
1524                         if ( isset( $_wp_theme_features['custom-header'] ) )
1525                                 $args[0] = wp_parse_args( $_wp_theme_features['custom-header'][0], $args[0] );
1526
1527                         // Load in the defaults at the end, as we need to insure first one wins.
1528                         // This will cause all constants to be defined, as each arg will then be set to the default.
1529                         if ( $jit )
1530                                 $args[0] = wp_parse_args( $args[0], $defaults );
1531
1532                         // If a constant was defined, use that value. Otherwise, define the constant to ensure
1533                         // the constant is always accurate (and is not defined later,  overriding our value).
1534                         // As stated above, the first value wins.
1535                         // Once we get to wp_loaded (just-in-time), define any constants we haven't already.
1536                         // Constants are lame. Don't reference them. This is just for backwards compatibility.
1537
1538                         if ( defined( 'NO_HEADER_TEXT' ) )
1539                                 $args[0]['header-text'] = ! NO_HEADER_TEXT;
1540                         elseif ( isset( $args[0]['header-text'] ) )
1541                                 define( 'NO_HEADER_TEXT', empty( $args[0]['header-text'] ) );
1542
1543                         if ( defined( 'HEADER_IMAGE_WIDTH' ) )
1544                                 $args[0]['width'] = (int) HEADER_IMAGE_WIDTH;
1545                         elseif ( isset( $args[0]['width'] ) )
1546                                 define( 'HEADER_IMAGE_WIDTH', (int) $args[0]['width'] );
1547
1548                         if ( defined( 'HEADER_IMAGE_HEIGHT' ) )
1549                                 $args[0]['height'] = (int) HEADER_IMAGE_HEIGHT;
1550                         elseif ( isset( $args[0]['height'] ) )
1551                                 define( 'HEADER_IMAGE_HEIGHT', (int) $args[0]['height'] );
1552
1553                         if ( defined( 'HEADER_TEXTCOLOR' ) )
1554                                 $args[0]['default-text-color'] = HEADER_TEXTCOLOR;
1555                         elseif ( isset( $args[0]['default-text-color'] ) )
1556                                 define( 'HEADER_TEXTCOLOR', $args[0]['default-text-color'] );
1557
1558                         if ( defined( 'HEADER_IMAGE' ) )
1559                                 $args[0]['default-image'] = HEADER_IMAGE;
1560                         elseif ( isset( $args[0]['default-image'] ) )
1561                                 define( 'HEADER_IMAGE', $args[0]['default-image'] );
1562
1563                         if ( $jit && ! empty( $args[0]['default-image'] ) )
1564                                 $args[0]['random-default'] = false;
1565
1566                         // If headers are supported, and we still don't have a defined width or height,
1567                         // we have implicit flex sizes.
1568                         if ( $jit ) {
1569                                 if ( empty( $args[0]['width'] ) && empty( $args[0]['flex-width'] ) )
1570                                         $args[0]['flex-width'] = true;
1571                                 if ( empty( $args[0]['height'] ) && empty( $args[0]['flex-height'] ) )
1572                                         $args[0]['flex-height'] = true;
1573                         }
1574
1575                         break;
1576
1577                 case 'custom-background' :
1578                         if ( ! is_array( $args ) )
1579                                 $args = array( 0 => array() );
1580
1581                         $defaults = array(
1582                                 'default-image'          => '',
1583                                 'default-repeat'         => 'repeat',
1584                                 'default-position-x'     => 'left',
1585                                 'default-attachment'     => 'scroll',
1586                                 'default-color'          => '',
1587                                 'wp-head-callback'       => '_custom_background_cb',
1588                                 'admin-head-callback'    => '',
1589                                 'admin-preview-callback' => '',
1590                         );
1591
1592                         $jit = isset( $args[0]['__jit'] );
1593                         unset( $args[0]['__jit'] );
1594
1595                         // Merge in data from previous add_theme_support() calls. The first value registered wins.
1596                         if ( isset( $_wp_theme_features['custom-background'] ) )
1597                                 $args[0] = wp_parse_args( $_wp_theme_features['custom-background'][0], $args[0] );
1598
1599                         if ( $jit )
1600                                 $args[0] = wp_parse_args( $args[0], $defaults );
1601
1602                         if ( defined( 'BACKGROUND_COLOR' ) )
1603                                 $args[0]['default-color'] = BACKGROUND_COLOR;
1604                         elseif ( isset( $args[0]['default-color'] ) || $jit )
1605                                 define( 'BACKGROUND_COLOR', $args[0]['default-color'] );
1606
1607                         if ( defined( 'BACKGROUND_IMAGE' ) )
1608                                 $args[0]['default-image'] = BACKGROUND_IMAGE;
1609                         elseif ( isset( $args[0]['default-image'] ) || $jit )
1610                                 define( 'BACKGROUND_IMAGE', $args[0]['default-image'] );
1611
1612                         break;
1613
1614                 // Ensure that 'title-tag' is accessible in the admin.
1615                 case 'title-tag' :
1616                         // Can be called in functions.php but must happen before wp_loaded, i.e. not in header.php.
1617                         if ( did_action( 'wp_loaded' ) ) {
1618                                 /* translators: 1: Theme support 2: hook name */
1619                                 _doing_it_wrong( "add_theme_support( 'title-tag' )", sprintf( __( 'Theme support for %1$s should be registered before the %2$s hook.' ),
1620                                         '<code>title-tag</code>', '<code>wp_loaded</code>' ), '4.1' );
1621
1622                                 return false;
1623                         }
1624         }
1625
1626         $_wp_theme_features[ $feature ] = $args;
1627 }
1628
1629 /**
1630  * Registers the internal custom header and background routines.
1631  *
1632  * @since 3.4.0
1633  * @access private
1634  */
1635 function _custom_header_background_just_in_time() {
1636         global $custom_image_header, $custom_background;
1637
1638         if ( current_theme_supports( 'custom-header' ) ) {
1639                 // In case any constants were defined after an add_custom_image_header() call, re-run.
1640                 add_theme_support( 'custom-header', array( '__jit' => true ) );
1641
1642                 $args = get_theme_support( 'custom-header' );
1643                 if ( $args[0]['wp-head-callback'] )
1644                         add_action( 'wp_head', $args[0]['wp-head-callback'] );
1645
1646                 if ( is_admin() ) {
1647                         require_once( ABSPATH . 'wp-admin/custom-header.php' );
1648                         $custom_image_header = new Custom_Image_Header( $args[0]['admin-head-callback'], $args[0]['admin-preview-callback'] );
1649                 }
1650         }
1651
1652         if ( current_theme_supports( 'custom-background' ) ) {
1653                 // In case any constants were defined after an add_custom_background() call, re-run.
1654                 add_theme_support( 'custom-background', array( '__jit' => true ) );
1655
1656                 $args = get_theme_support( 'custom-background' );
1657                 add_action( 'wp_head', $args[0]['wp-head-callback'] );
1658
1659                 if ( is_admin() ) {
1660                         require_once( ABSPATH . 'wp-admin/custom-background.php' );
1661                         $custom_background = new Custom_Background( $args[0]['admin-head-callback'], $args[0]['admin-preview-callback'] );
1662                 }
1663         }
1664 }
1665 add_action( 'wp_loaded', '_custom_header_background_just_in_time' );
1666
1667 /**
1668  * Gets the theme support arguments passed when registering that support
1669  *
1670  * @since 3.1.0
1671  *
1672  * @param string $feature the feature to check
1673  * @return mixed The array of extra arguments or the value for the registered feature.
1674  */
1675 function get_theme_support( $feature ) {
1676         global $_wp_theme_features;
1677         if ( ! isset( $_wp_theme_features[ $feature ] ) )
1678                 return false;
1679
1680         if ( func_num_args() <= 1 )
1681                 return $_wp_theme_features[ $feature ];
1682
1683         $args = array_slice( func_get_args(), 1 );
1684         switch ( $feature ) {
1685                 case 'custom-header' :
1686                 case 'custom-background' :
1687                         if ( isset( $_wp_theme_features[ $feature ][0][ $args[0] ] ) )
1688                                 return $_wp_theme_features[ $feature ][0][ $args[0] ];
1689                         return false;
1690
1691                 default :
1692                         return $_wp_theme_features[ $feature ];
1693         }
1694 }
1695
1696 /**
1697  * Allows a theme to de-register its support of a certain feature
1698  *
1699  * Should be called in the theme's functions.php file. Generally would
1700  * be used for child themes to override support from the parent theme.
1701  *
1702  * @since 3.0.0
1703  * @see add_theme_support()
1704  * @param string $feature the feature being added
1705  * @return null|bool Whether feature was removed.
1706  */
1707 function remove_theme_support( $feature ) {
1708         // Blacklist: for internal registrations not used directly by themes.
1709         if ( in_array( $feature, array( 'editor-style', 'widgets', 'menus' ) ) )
1710                 return false;
1711
1712         return _remove_theme_support( $feature );
1713 }
1714
1715 /**
1716  * Do not use. Removes theme support internally, ignorant of the blacklist.
1717  *
1718  * @access private
1719  * @since 3.1.0
1720  * @param string $feature
1721  */
1722 function _remove_theme_support( $feature ) {
1723         global $_wp_theme_features;
1724
1725         switch ( $feature ) {
1726                 case 'custom-header-uploads' :
1727                         if ( ! isset( $_wp_theme_features['custom-header'] ) )
1728                                 return false;
1729                         add_theme_support( 'custom-header', array( 'uploads' => false ) );
1730                         return; // Do not continue - custom-header-uploads no longer exists.
1731         }
1732
1733         if ( ! isset( $_wp_theme_features[ $feature ] ) )
1734                 return false;
1735
1736         switch ( $feature ) {
1737                 case 'custom-header' :
1738                         if ( ! did_action( 'wp_loaded' ) )
1739                                 break;
1740                         $support = get_theme_support( 'custom-header' );
1741                         if ( $support[0]['wp-head-callback'] )
1742                                 remove_action( 'wp_head', $support[0]['wp-head-callback'] );
1743                         remove_action( 'admin_menu', array( $GLOBALS['custom_image_header'], 'init' ) );
1744                         unset( $GLOBALS['custom_image_header'] );
1745                         break;
1746
1747                 case 'custom-background' :
1748                         if ( ! did_action( 'wp_loaded' ) )
1749                                 break;
1750                         $support = get_theme_support( 'custom-background' );
1751                         remove_action( 'wp_head', $support[0]['wp-head-callback'] );
1752                         remove_action( 'admin_menu', array( $GLOBALS['custom_background'], 'init' ) );
1753                         unset( $GLOBALS['custom_background'] );
1754                         break;
1755         }
1756
1757         unset( $_wp_theme_features[ $feature ] );
1758         return true;
1759 }
1760
1761 /**
1762  * Checks a theme's support for a given feature
1763  *
1764  * @since 2.9.0
1765  * @param string $feature the feature being checked
1766  * @return boolean
1767  */
1768 function current_theme_supports( $feature ) {
1769         global $_wp_theme_features;
1770
1771         if ( 'custom-header-uploads' == $feature )
1772                 return current_theme_supports( 'custom-header', 'uploads' );
1773
1774         if ( !isset( $_wp_theme_features[$feature] ) )
1775                 return false;
1776
1777         if ( 'title-tag' == $feature ) {
1778                 // Don't confirm support unless called internally.
1779                 $trace = debug_backtrace();
1780                 if ( ! in_array( $trace[1]['function'], array( '_wp_render_title_tag', 'wp_title' ) ) ) {
1781                         return false;
1782                 }
1783         }
1784
1785         // If no args passed then no extra checks need be performed
1786         if ( func_num_args() <= 1 )
1787                 return true;
1788
1789         $args = array_slice( func_get_args(), 1 );
1790
1791         switch ( $feature ) {
1792                 case 'post-thumbnails':
1793                         // post-thumbnails can be registered for only certain content/post types by passing
1794                         // an array of types to add_theme_support(). If no array was passed, then
1795                         // any type is accepted
1796                         if ( true === $_wp_theme_features[$feature] )  // Registered for all types
1797                                 return true;
1798                         $content_type = $args[0];
1799                         return in_array( $content_type, $_wp_theme_features[$feature][0] );
1800
1801                 case 'html5':
1802                 case 'post-formats':
1803                         // specific post formats can be registered by passing an array of types to
1804                         // add_theme_support()
1805
1806                         // Specific areas of HTML5 support *must* be passed via an array to add_theme_support()
1807
1808                         $type = $args[0];
1809                         return in_array( $type, $_wp_theme_features[$feature][0] );
1810
1811                 case 'custom-header':
1812                 case 'custom-background' :
1813                         // specific custom header and background capabilities can be registered by passing
1814                         // an array to add_theme_support()
1815                         $header_support = $args[0];
1816                         return ( isset( $_wp_theme_features[$feature][0][$header_support] ) && $_wp_theme_features[$feature][0][$header_support] );
1817         }
1818
1819         /**
1820          * Filter whether the current theme supports a specific feature.
1821          *
1822          * The dynamic portion of the hook name, `$feature`, refers to the specific theme
1823          * feature. Possible values include 'post-formats', 'post-thumbnails', 'custom-background',
1824          * 'custom-header', 'menus', 'automatic-feed-links', and 'html5'.
1825          *
1826          * @since 3.4.0
1827          *
1828          * @param bool   true     Whether the current theme supports the given feature. Default true.
1829          * @param array  $args    Array of arguments for the feature.
1830          * @param string $feature The theme feature.
1831          */
1832         return apply_filters( "current_theme_supports-{$feature}", true, $args, $_wp_theme_features[$feature] );
1833 }
1834
1835 /**
1836  * Checks a theme's support for a given feature before loading the functions which implement it.
1837  *
1838  * @since 2.9.0
1839  *
1840  * @param string $feature The feature being checked.
1841  * @param string $include Path to the file.
1842  * @return bool True if the current theme supports the supplied feature, false otherwise.
1843  */
1844 function require_if_theme_supports( $feature, $include ) {
1845         if ( current_theme_supports( $feature ) ) {
1846                 require ( $include );
1847                 return true;
1848         }
1849         return false;
1850 }
1851
1852 /**
1853  * Checks an attachment being deleted to see if it's a header or background image.
1854  *
1855  * If true it removes the theme modification which would be pointing at the deleted
1856  * attachment
1857  *
1858  * @access private
1859  * @since 3.0.0
1860  * @param int $id the attachment id
1861  */
1862 function _delete_attachment_theme_mod( $id ) {
1863         $attachment_image = wp_get_attachment_url( $id );
1864         $header_image = get_header_image();
1865         $background_image = get_background_image();
1866
1867         if ( $header_image && $header_image == $attachment_image )
1868                 remove_theme_mod( 'header_image' );
1869
1870         if ( $background_image && $background_image == $attachment_image )
1871                 remove_theme_mod( 'background_image' );
1872 }
1873
1874 add_action( 'delete_attachment', '_delete_attachment_theme_mod' );
1875
1876 /**
1877  * Checks if a theme has been changed and runs 'after_switch_theme' hook on the next WP load
1878  *
1879  * @since 3.3.0
1880  */
1881 function check_theme_switched() {
1882         if ( $stylesheet = get_option( 'theme_switched' ) ) {
1883                 $old_theme = wp_get_theme( $stylesheet );
1884
1885                 // Prevent retrieve_widgets() from running since Customizer already called it up front
1886                 if ( get_option( 'theme_switched_via_customizer' ) ) {
1887                         remove_action( 'after_switch_theme', '_wp_sidebars_changed' );
1888                         update_option( 'theme_switched_via_customizer', false );
1889                 }
1890
1891                 if ( $old_theme->exists() ) {
1892                         /**
1893                          * Fires on the first WP load after a theme switch if the old theme still exists.
1894                          *
1895                          * This action fires multiple times and the parameters differs
1896                          * according to the context, if the old theme exists or not.
1897                          * If the old theme is missing, the parameter will be the slug
1898                          * of the old theme.
1899                          *
1900                          * @since 3.3.0
1901                          *
1902                          * @param string   $old_name  Old theme name.
1903                          * @param WP_Theme $old_theme WP_Theme instance of the old theme.
1904                          */
1905                         do_action( 'after_switch_theme', $old_theme->get( 'Name' ), $old_theme );
1906                 } else {
1907                         /** This action is documented in wp-includes/theme.php */
1908                         do_action( 'after_switch_theme', $stylesheet );
1909                 }
1910
1911                 update_option( 'theme_switched', false );
1912         }
1913 }
1914
1915 /**
1916  * Includes and instantiates the WP_Customize_Manager class.
1917  *
1918  * Fires when ?wp_customize=on or on wp-admin/customize.php.
1919  *
1920  * @since 3.4.0
1921  */
1922 function _wp_customize_include() {
1923         if ( ! ( ( isset( $_REQUEST['wp_customize'] ) && 'on' == $_REQUEST['wp_customize'] )
1924                 || ( is_admin() && 'customize.php' == basename( $_SERVER['PHP_SELF'] ) )
1925         ) )
1926                 return;
1927
1928         require( ABSPATH . WPINC . '/class-wp-customize-manager.php' );
1929         // Init Customize class
1930         $GLOBALS['wp_customize'] = new WP_Customize_Manager;
1931 }
1932 add_action( 'plugins_loaded', '_wp_customize_include' );
1933
1934 /**
1935  * Adds settings for the customize-loader script.
1936  *
1937  * @since 3.4.0
1938  */
1939 function _wp_customize_loader_settings() {
1940         global $wp_scripts;
1941
1942         $admin_origin = parse_url( admin_url() );
1943         $home_origin  = parse_url( home_url() );
1944         $cross_domain = ( strtolower( $admin_origin[ 'host' ] ) != strtolower( $home_origin[ 'host' ] ) );
1945
1946         $browser = array(
1947                 'mobile' => wp_is_mobile(),
1948                 'ios'    => wp_is_mobile() && preg_match( '/iPad|iPod|iPhone/', $_SERVER['HTTP_USER_AGENT'] ),
1949         );
1950
1951         $settings = array(
1952                 'url'           => esc_url( admin_url( 'customize.php' ) ),
1953                 'isCrossDomain' => $cross_domain,
1954                 'browser'       => $browser,
1955                 'l10n'          => array(
1956                         'saveAlert' => __( 'The changes you made will be lost if you navigate away from this page.' ),
1957                 ),
1958         );
1959
1960         $script = 'var _wpCustomizeLoaderSettings = ' . wp_json_encode( $settings ) . ';';
1961
1962         $data = $wp_scripts->get_data( 'customize-loader', 'data' );
1963         if ( $data )
1964                 $script = "$data\n$script";
1965
1966         $wp_scripts->add_data( 'customize-loader', 'data', $script );
1967 }
1968 add_action( 'admin_enqueue_scripts', '_wp_customize_loader_settings' );
1969
1970 /**
1971  * Returns a URL to load the Customizer.
1972  *
1973  * @since 3.4.0
1974  *
1975  * @param string $stylesheet Optional. Theme to customize. Defaults to current theme.
1976  *      The theme's stylesheet will be urlencoded if necessary.
1977  */
1978 function wp_customize_url( $stylesheet = null ) {
1979         $url = admin_url( 'customize.php' );
1980         if ( $stylesheet )
1981                 $url .= '?theme=' . urlencode( $stylesheet );
1982         return esc_url( $url );
1983 }
1984
1985 /**
1986  * Prints a script to check whether or not the Customizer is supported,
1987  * and apply either the no-customize-support or customize-support class
1988  * to the body.
1989  *
1990  * This function MUST be called inside the body tag.
1991  *
1992  * Ideally, call this function immediately after the body tag is opened.
1993  * This prevents a flash of unstyled content.
1994  *
1995  * It is also recommended that you add the "no-customize-support" class
1996  * to the body tag by default.
1997  *
1998  * @since 3.4.0
1999  */
2000 function wp_customize_support_script() {
2001         $admin_origin = parse_url( admin_url() );
2002         $home_origin  = parse_url( home_url() );
2003         $cross_domain = ( strtolower( $admin_origin[ 'host' ] ) != strtolower( $home_origin[ 'host' ] ) );
2004
2005         ?>
2006         <script type="text/javascript">
2007                 (function() {
2008                         var request, b = document.body, c = 'className', cs = 'customize-support', rcs = new RegExp('(^|\\s+)(no-)?'+cs+'(\\s+|$)');
2009
2010 <?php           if ( $cross_domain ): ?>
2011                         request = (function(){ var xhr = new XMLHttpRequest(); return ('withCredentials' in xhr); })();
2012 <?php           else: ?>
2013                         request = true;
2014 <?php           endif; ?>
2015
2016                         b[c] = b[c].replace( rcs, ' ' );
2017                         b[c] += ( window.postMessage && request ? ' ' : ' no-' ) + cs;
2018                 }());
2019         </script>
2020         <?php
2021 }
2022
2023 /**
2024  * Whether the site is being previewed in the Customizer.
2025  *
2026  * @since 4.0.0
2027  *
2028  * @global WP_Customize_Manager $wp_customize Customizer instance.
2029  *
2030  * @return bool True if the site is being previewed in the Customizer, false otherwise.
2031  */
2032 function is_customize_preview() {
2033         global $wp_customize;
2034
2035         return is_a( $wp_customize, 'WP_Customize_Manager' ) && $wp_customize->is_preview();
2036 }