Changeset 46660 for trunk/src/wp-includes/theme.php
- Timestamp:
- 11/05/2019 09:21:46 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r46603 r46660 1974 1974 1975 1975 /** 1976 * Retrieve any registered editor stylesheet s1976 * Retrieve any registered editor stylesheet URLs. 1977 1977 * 1978 1978 * @since 4.0.0 … … 1980 1980 * @global array $editor_styles Registered editor stylesheets 1981 1981 * 1982 * @return arrayIf registered, a list of editor stylesheet URLs.1982 * @return string[] If registered, a list of editor stylesheet URLs. 1983 1983 */ 1984 1984 function get_editor_stylesheets() { … … 2020 2020 2021 2021 /** 2022 * Filters the array of stylesheets applied to the editor.2022 * Filters the array of URLs of stylesheets applied to the editor. 2023 2023 * 2024 2024 * @since 4.3.0 2025 2025 * 2026 * @param array $stylesheets Arrayof stylesheets to be applied to the editor.2026 * @param string[] $stylesheets Array of URLs of stylesheets to be applied to the editor. 2027 2027 */ 2028 2028 return apply_filters( 'editor_stylesheets', $stylesheets );
Note: See TracChangeset
for help on using the changeset viewer.