Changeset 57644 for trunk/src/wp-includes/general-template.php
- Timestamp:
- 02/16/2024 09:45:18 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r57170 r57644 1320 1320 * Default '»'. 1321 1321 * @param bool $display Optional. Whether to display or retrieve title. Default true. 1322 * @param string $seplocation Optional. Location of the separator ( 'left' or 'right').1322 * @param string $seplocation Optional. Location of the separator (either 'left' or 'right'). 1323 1323 * @return string|void String when `$display` is false, nothing otherwise. 1324 1324 */ … … 1440 1440 * @param string $title Page title. 1441 1441 * @param string $sep Title separator. 1442 * @param string $seplocation Location of the separator ( 'left' or 'right').1442 * @param string $seplocation Location of the separator (either 'left' or 'right'). 1443 1443 */ 1444 1444 $title = apply_filters( 'wp_title', $title, $sep, $seplocation ); … … 3464 3464 3465 3465 /** 3466 * Filters domains and URLs for resource hints of relation type.3466 * Filters domains and URLs for resource hints of the given relation type. 3467 3467 * 3468 3468 * @since 4.6.0 … … 3484 3484 * } 3485 3485 * } 3486 * @param string $relation_type The relation type the URLs are printed for ,3487 * e.g. 'preconnect'or 'prerender'.3486 * @param string $relation_type The relation type the URLs are printed for. One of 3487 * 'dns-prefetch', 'preconnect', 'prefetch', or 'prerender'. 3488 3488 */ 3489 3489 $urls = apply_filters( 'wp_resource_hints', $urls, $relation_type ); … … 3758 3758 * Finds out which editor should be displayed by default. 3759 3759 * 3760 * Works out which of the twoeditors to display as the current editor for a3760 * Works out which of the editors to display as the current editor for a 3761 3761 * user. The 'html' setting is for the "Text" editor tab. 3762 3762 * 3763 3763 * @since 2.5.0 3764 3764 * 3765 * @return string Either 'tinymce', or'html', or 'test'3765 * @return string Either 'tinymce', 'html', or 'test' 3766 3766 */ 3767 3767 function wp_default_editor() {
Note: See TracChangeset
for help on using the changeset viewer.