mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 12:20:22 +00:00
Docs: Add missing code formatting to various @since entries.
See #42505 git-svn-id: https://develop.svn.wordpress.org/trunk@42678 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
+10
-10
@@ -1004,7 +1004,7 @@ function get_post_type( $post = null ) {
|
||||
* Retrieves a post type object by name.
|
||||
*
|
||||
* @since 3.0.0
|
||||
* @since 4.6.0 Object returned is now an instance of WP_Post_Type.
|
||||
* @since 4.6.0 Object returned is now an instance of `WP_Post_Type`.
|
||||
*
|
||||
* @global array $wp_post_types List of post types.
|
||||
*
|
||||
@@ -1067,8 +1067,8 @@ function get_post_types( $args = array(), $output = 'names', $operator = 'and' )
|
||||
* @since 3.0.0 The `show_ui` argument is now enforced on the new post screen.
|
||||
* @since 4.4.0 The `show_ui` argument is now enforced on the post type listing
|
||||
* screen and post editing screen.
|
||||
* @since 4.6.0 Post type object returned is now an instance of WP_Post_Type.
|
||||
* @since 4.7.0 Introduced `show_in_rest`, 'rest_base' and 'rest_controller_class'
|
||||
* @since 4.6.0 Post type object returned is now an instance of `WP_Post_Type`.
|
||||
* @since 4.7.0 Introduced `show_in_rest`, `rest_base` and `rest_controller_class`
|
||||
* arguments to register the post type in REST API.
|
||||
*
|
||||
* @global array $wp_post_types List of post types.
|
||||
@@ -1214,7 +1214,7 @@ function register_post_type( $post_type, $args = array() ) {
|
||||
* Fires after a post type is registered.
|
||||
*
|
||||
* @since 3.3.0
|
||||
* @since 4.6.0 Converted the `$post_type` parameter to accept a WP_Post_Type object.
|
||||
* @since 4.6.0 Converted the `$post_type` parameter to accept a `WP_Post_Type` object.
|
||||
*
|
||||
* @param string $post_type Post type.
|
||||
* @param WP_Post_Type $post_type_object Arguments used to register the post type.
|
||||
@@ -1443,7 +1443,7 @@ function _post_type_meta_capabilities( $capabilities = null ) {
|
||||
* and `use_featured_image` labels.
|
||||
* @since 4.4.0 Added the `archives`, `insert_into_item`, `uploaded_to_this_item`, `filter_items_list`,
|
||||
* `items_list_navigation`, and `items_list` labels.
|
||||
* @since 4.6.0 Converted the `$post_type` parameter to accept a WP_Post_Type object.
|
||||
* @since 4.6.0 Converted the `$post_type` parameter to accept a `WP_Post_Type` object.
|
||||
* @since 4.7.0 Added the `view_items` and `attributes` labels.
|
||||
*
|
||||
* @access private
|
||||
@@ -1712,7 +1712,7 @@ function set_post_type( $post_id = 0, $post_type = 'post' ) {
|
||||
*
|
||||
* @since 4.4.0
|
||||
* @since 4.5.0 Added the ability to pass a post type name in addition to object.
|
||||
* @since 4.6.0 Converted the `$post_type` parameter to accept a WP_Post_Type object.
|
||||
* @since 4.6.0 Converted the `$post_type` parameter to accept a `WP_Post_Type` object.
|
||||
*
|
||||
* @param string|WP_Post_Type $post_type Post type name or object.
|
||||
* @return bool Whether the post type should be considered viewable.
|
||||
@@ -4248,8 +4248,8 @@ function wp_transition_post_status( $new_status, $old_status, $post ) {
|
||||
* Add a URL to those already pinged.
|
||||
*
|
||||
* @since 1.5.0
|
||||
* @since 4.7.0 $post_id can be a WP_Post object.
|
||||
* @since 4.7.0 $uri can be an array of URIs.
|
||||
* @since 4.7.0 `$post_id` can be a WP_Post object.
|
||||
* @since 4.7.0 `$uri` can be an array of URIs.
|
||||
*
|
||||
* @global wpdb $wpdb WordPress database abstraction object.
|
||||
*
|
||||
@@ -4330,7 +4330,7 @@ function get_enclosed( $post_id ) {
|
||||
*
|
||||
* @since 1.5.0
|
||||
*
|
||||
* @since 4.7.0 $post_id can be a WP_Post object.
|
||||
* @since 4.7.0 `$post_id` can be a WP_Post object.
|
||||
*
|
||||
* @param int|WP_Post $post_id Post ID or object.
|
||||
* @return array
|
||||
@@ -4358,7 +4358,7 @@ function get_pung( $post_id ) {
|
||||
* Retrieve URLs that need to be pinged.
|
||||
*
|
||||
* @since 1.5.0
|
||||
* @since 4.7.0 $post_id can be a WP_Post object.
|
||||
* @since 4.7.0 `$post_id` can be a WP_Post object.
|
||||
*
|
||||
* @param int|WP_Post $post_id Post Object or ID
|
||||
* @return array
|
||||
|
||||
Reference in New Issue
Block a user