返回介绍

get_editor_stylesheets()

发布于 2017-09-10 23:17:19 字数 2822 浏览 917 评论 0 收藏 0

get_editor_stylesheets()

Retrieve any registered editor stylesheets


description


返回值

(array) If registered, a list of editor stylesheet URLs.


源代码

File: wp-includes/theme.php

function get_editor_stylesheets() {
	$stylesheets = array();
	// load editor_style.css if the current theme supports it
	if ( ! empty( $GLOBALS['editor_styles'] ) && is_array( $GLOBALS['editor_styles'] ) ) {
		$editor_styles = $GLOBALS['editor_styles'];

		$editor_styles = array_unique( array_filter( $editor_styles ) );
		$style_uri = get_stylesheet_directory_uri();
		$style_dir = get_stylesheet_directory();

		// Support externally referenced styles (like, say, fonts).
		foreach ( $editor_styles as $key => $file ) {
			if ( preg_match( '~^(https?:)?//~', $file ) ) {
				$stylesheets[] = esc_url_raw( $file );
				unset( $editor_styles[ $key ] );
			}
		}

		// Look in a parent theme first, that way child theme CSS overrides.
		if ( is_child_theme() ) {
			$template_uri = get_template_directory_uri();
			$template_dir = get_template_directory();

			foreach ( $editor_styles as $key => $file ) {
				if ( $file && file_exists( "$template_dir/$file" ) ) {
					$stylesheets[] = "$template_uri/$file";
				}
			}
		}

		foreach ( $editor_styles as $file ) {
			if ( $file && file_exists( "$style_dir/$file" ) ) {
				$stylesheets[] = "$style_uri/$file";
			}
		}
	}

	/**
	 * Filters the array of stylesheets applied to the editor.
	 *
	 * @since 4.3.0
	 *
	 * @param array $stylesheets Array of stylesheets to be applied to the editor.
	 */
	return apply_filters( 'editor_stylesheets', $stylesheets );
}

更新日志

Versiondescription
4.0.0Introduced.

相关函数

Uses

  • wp-includes/theme.php: editor_stylesheets
  • wp-includes/theme.php: get_stylesheet_directory_uri()
  • wp-includes/theme.php: get_stylesheet_directory()
  • wp-includes/theme.php: get_template_directory_uri()
  • wp-includes/theme.php: get_template_directory()
  • wp-includes/theme.php: is_child_theme()
  • wp-includes/formatting.php: esc_url_raw()
  • wp-includes/plugin.php: apply_filters()
  • Show 3 more uses Hide more uses

Used By

  • wp-includes/class-wp-editor.php: _WP_Editors::editor_settings()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文