Changeset 52215
- Timestamp:
- 11/19/2021 02:42:04 PM (3 years ago)
- Location:
- trunk/src
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r52092 r52215 818 818 819 819 /* 820 * Arrange pages into two parts: top level pages and children_pages 821 * children_pages is two dimensional array , eg.820 * Arrange pages into two parts: top level pages and children_pages. 821 * children_pages is two dimensional array. Example: 822 822 * children_pages[10][] contains all sub-pages whose parent is 10. 823 823 * It only takes O( N ) to arrange this and it takes O( 1 ) for subsequent lookup operations -
trunk/src/wp-admin/includes/schema.php
r51660 r52215 965 965 * 966 966 * @param int $network_id ID of network to populate. 967 * @param string $domain The domain name for the network (eg. "example.com").967 * @param string $domain The domain name for the network. Example: "example.com". 968 968 * @param string $email Email address for the network administrator. 969 969 * @param string $site_name The name of the network. -
trunk/src/wp-includes/class-wp-http-proxy.php
r48184 r52215 26 26 * <li>WP_PROXY_BYPASS_HOSTS - Will prevent the hosts in this list from going through the proxy. 27 27 * You do not need to have localhost and the site host in this list, because they will not be passed 28 * through the proxy. The list should be presented in a comma separated list, wildcards using * are supported , eg.*.wordpress.org</li>28 * through the proxy. The list should be presented in a comma separated list, wildcards using * are supported. Example: *.wordpress.org</li> 29 29 * </ol> 30 30 * -
trunk/src/wp-includes/class-wp-post-type.php
r51965 r52215 118 118 * 119 119 * To work, $show_ui must be true. If true, the post type is shown in its own top level menu. If false, no menu is 120 * shown. If a string of an existing top level menu ( eg. 'tools.php' or 'edit.php?post_type=page'), the post type121 * will be placed as a sub-menu of that.120 * shown. If a string of an existing top level menu ('tools.php' or 'edit.php?post_type=page', for example), the 121 * post type will be placed as a sub-menu of that. 122 122 * 123 123 * Default is the value of $show_ui. -
trunk/src/wp-includes/class-wp-walker.php
r51780 r52215 210 210 * Need to display in hierarchical order. 211 211 * Separate elements into two buckets: top level and children elements. 212 * Children_elements is two dimensional array , eg.212 * Children_elements is two dimensional array. Example: 213 213 * Children_elements[10][] contains all sub-elements whose parent is 10. 214 214 */ -
trunk/src/wp-includes/customize/class-wp-customize-date-time-control.php
r51534 r52215 218 218 * Timezone info. All properties are optional. 219 219 * 220 * @type string $abbr Timezone abbreviation , eg.PST or CEST.220 * @type string $abbr Timezone abbreviation. Examples: PST or CEST. 221 221 * @type string $description Human-readable timezone description as HTML. 222 222 * } -
trunk/src/wp-includes/functions.php
r52204 r52215 2701 2701 * 2702 2702 * @param string $filename Unique file name. 2703 * @param string $ext File extension , eg.".png".2703 * @param string $ext File extension. Example: ".png". 2704 2704 * @param string $dir Directory path. 2705 2705 * @param callable|null $unique_filename_callback Callback function that generates the unique file name. -
trunk/src/wp-includes/link-template.php
r52205 r52215 1114 1114 * @param int $term_id Term ID. 1115 1115 * @param string $taxonomy Taxonomy name. 1116 * @param string $object_type The object type (eg. the post type).1116 * @param string $object_type The object type. 1117 1117 */ 1118 1118 return apply_filters( 'get_edit_term_link', $location, $term_id, $taxonomy, $object_type ); -
trunk/src/wp-includes/post.php
r52194 r52215 1562 1562 * must be true. If true, the post type is shown in its own top level 1563 1563 * menu. If false, no menu is shown. If a string of an existing top 1564 * level menu ( eg. 'tools.php' or 'edit.php?post_type=page'), the post1565 * type will be placed as a sub-menu of that.1564 * level menu ('tools.php' or 'edit.php?post_type=page', for example), the 1565 * post type will be placed as a sub-menu of that. 1566 1566 * Default is value of $show_ui. 1567 1567 * @type bool $show_in_nav_menus Makes this post type available for selection in navigation menus.
Note: See TracChangeset
for help on using the changeset viewer.