Ticket #38721: 38721.diff
File 38721.diff, 9.9 KB (added by , 4 years ago) |
---|
-
src/wp-includes/bookmark-template.php
180 180 * @type int|bool $show_description Whether to show the bookmark descriptions. Accepts 1|true or 0|false. 181 181 * Default 0|false. 182 182 * @type string $title_li What to show before the links appear. Default 'Bookmarks'. 183 * @type string $title_before The HTML or text to prepend to the $title_li string. Default '<h2>'.184 * @type string $title_after The HTML or text to append to the $title_li string. Default '</h2>'.183 * @type string $title_before The HTML or text to prepend to the $title_li string. Default `<h2>`. 184 * @type string $title_after The HTML or text to append to the $title_li string. Default `</h2>`. 185 185 * @type string $class The CSS class to use for the $title_li. Default 'linkcat'. 186 186 * @type string $category_before The HTML or text to prepend to $title_before if $categorize is true. 187 187 * String must contain '%id' and '%class' to inherit the category ID and 188 188 * the $class argument used for formatting in themes. 189 * Default '<li id="%id" class="%class">'.189 * Default `<li id="%id" class="%class">`. 190 190 * @type string $category_after The HTML or text to append to $title_after if $categorize is true. 191 * Default '</li>'.191 * Default `</li>`. 192 192 * @type string $category_orderby How to order the bookmark category based on term scheme if $categorize 193 193 * is true. Default 'name'. 194 194 * @type string $category_order Whether to order categories in ascending or descending order if -
src/wp-includes/category-template.php
486 486 * @type string $order Which direction to order categories. Accepts 'ASC' or 'DESC'. 487 487 * Default 'ASC'. 488 488 * @type string $orderby The column to use for ordering categories. Default 'ID'. 489 * @type string $separator Separator between links. Default '<br />'.489 * @type string $separator Separator between links. Default `<br />`. 490 490 * @type bool|int $show_count Whether to show how many posts are in the category. Default 0. 491 491 * @type string $show_option_all Text to display for showing all categories. Default empty string. 492 492 * @type string $show_option_none Text to display for the 'no categories' option. -
src/wp-includes/comment-template.php
2147 2147 * @type string $title_reply_to The translatable 'reply-to' button label. Default 'Leave a Reply to %s', 2148 2148 * where %s is the author of the comment being replied to. 2149 2149 * @type string $title_reply_before HTML displayed before the comment form title. 2150 * Default : '<h3 id="reply-title" class="comment-reply-title">'.2150 * Default `<h3 id="reply-title" class="comment-reply-title">`. 2151 2151 * @type string $title_reply_after HTML displayed after the comment form title. 2152 * Default : '</h3>'.2152 * Default `</h3>`. 2153 2153 * @type string $cancel_reply_before HTML displayed before the cancel reply link. 2154 2154 * @type string $cancel_reply_after HTML displayed after the cancel reply link. 2155 2155 * @type string $cancel_reply_link The translatable 'cancel reply' button label. Default 'Cancel reply'. 2156 2156 * @type string $label_submit The translatable 'submit' button label. Default 'Post a comment'. 2157 2157 * @type string $submit_button HTML format for the Submit button. 2158 * Default : '<input name="%1$s" type="submit" id="%2$s" class="%3$s" value="%4$s" />'.2158 * Default `<input name="%1$s" type="submit" id="%2$s" class="%3$s" value="%4$s" />`. 2159 2159 * @type string $submit_field HTML format for the markup surrounding the Submit button and comment hidden 2160 * fields. Default : '<p class="form-submit">%1$s %2$s</a>', where %1$s is the2160 * fields. Default `<p class="form-submit">%1$s %2$s</a>`, where %1$s is the 2161 2161 * submit button markup and %2$s is the comment hidden fields. 2162 2162 * @type string $format The comment form format. Default 'xhtml'. Accepts 'xhtml', 'html5'. 2163 2163 * } … … 2441 2441 echo apply_filters( 'comment_form_submit_field', $submit_field, $args ); 2442 2442 2443 2443 /** 2444 * Fires at the bottom of the comment form, inside the closing </form>tag.2444 * Fires at the bottom of the comment form, inside the closing form tag. 2445 2445 * 2446 2446 * @since 1.5.0 2447 2447 * -
src/wp-includes/embed.php
313 313 } 314 314 315 315 /** 316 * Adds oEmbed discovery links in the website <head>.316 * Adds oEmbed discovery links in the website head tag. 317 317 * 318 318 * @since 4.4.0 319 319 */ -
src/wp-includes/functions.wp-scripts.php
138 138 * as a query string for cache busting purposes. If version is set to false, a version 139 139 * number is automatically added equal to current installed WordPress version. 140 140 * If set to null, no version is added. 141 * @param bool $in_footer Optional. Whether to enqueue the script before </body> instead of in the <head>.142 * Default 'false'.141 * @param bool $in_footer Optional. Whether to enqueue the script before the closing body tag instead of in the head 142 * tag. Default 'false'. 143 143 * @return bool Whether the script has been registered. True on success, false on failure. 144 144 */ 145 145 function wp_register_script( $handle, $src, $deps = array(), $ver = false, $in_footer = false ) { … … 258 258 * as a query string for cache busting purposes. If version is set to false, a version 259 259 * number is automatically added equal to current installed WordPress version. 260 260 * If set to null, no version is added. 261 * @param bool $in_footer Optional. Whether to enqueue the script before </body> instead of in the <head>.262 * Default 'false'.261 * @param bool $in_footer Optional. Whether to enqueue the script before the closing body tag instead of in the head 262 * tag. Default 'false'. 263 263 */ 264 264 function wp_enqueue_script( $handle, $src = '', $deps = array(), $ver = false, $in_footer = false ) { 265 265 $wp_scripts = wp_scripts(); -
src/wp-includes/post-template.php
1277 1277 * you'd like shown for the home link. 1|true defaults to 'Home'. 1278 1278 * @type string $link_before The HTML or text to prepend to $show_home text. Default empty. 1279 1279 * @type string $link_after The HTML or text to append to $show_home text. Default empty. 1280 * @type string $before The HTML or text to prepend to the menu. Default is '<ul>'.1281 * @type string $after The HTML or text to append to the menu. Default is '</ul>'.1280 * @type string $before The HTML or text to prepend to the menu. Default `<ul>`. 1281 * @type string $after The HTML or text to append to the menu. Default `</ul>`. 1282 1282 * @type string $item_spacing Whether to preserve whitespace within the menu's HTML. Accepts 'preserve' or 'discard'. Default 'discard'. 1283 1283 * @type Walker $walker Walker instance to use for listing pages. Default empty (Walker_Page). 1284 1284 * } -
src/wp-includes/theme-compat/header-embed.php
22 22 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 23 23 <?php 24 24 /** 25 * Prints scripts or data in the embed template <head>tag.25 * Prints scripts or data in the embed template head tag. 26 26 * 27 27 * @since 4.4.0 28 28 */ -
src/wp-includes/theme.php
1629 1629 } 1630 1630 1631 1631 /** 1632 * Modify the Custom CSS Output into the <head>.1632 * Modify the Custom CSS Output into the head tag. 1633 1633 * 1634 1634 * @since 4.7.0 1635 1635 *