Changeset 45742
- Timestamp:
- 08/04/2019 12:27:02 PM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-form-advanced.php
r45674 r45742 15 15 * @global string $post_type 16 16 * @global WP_Post_Type $post_type_object 17 * @global WP_Post $post 17 * @global WP_Post $post Global post object. 18 18 */ 19 19 global $post_type, $post_type_object, $post; -
trunk/src/wp-admin/edit-form-blocks.php
r45657 r45742 17 17 * @global string $post_type 18 18 * @global WP_Post_Type $post_type_object 19 * @global WP_Post $post 19 * @global WP_Post $post Global post object. 20 20 * @global string $title 21 21 * @global array $editor_styles -
trunk/src/wp-admin/includes/ajax-actions.php
r45727 r45742 3082 3082 * @since 3.5.0 3083 3083 * 3084 * @global WP_Post $post 3084 * @global WP_Post $post Global post object. 3085 3085 * @global WP_Embed $wp_embed 3086 3086 */ … … 3407 3407 * @since 4.0.0 3408 3408 * 3409 * @global WP_Post $post Global $post.3409 * @global WP_Post $post Global post object. 3410 3410 * @global WP_Embed $wp_embed Embed API instance. 3411 3411 * @global WP_Scripts $wp_scripts … … 3540 3540 * @since 4.0.0 3541 3541 * 3542 * @global WP_Post $post 3542 * @global WP_Post $post Global post object. 3543 3543 * @global WP_Scripts $wp_scripts 3544 3544 */ -
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r45583 r45742 534 534 535 535 /** 536 * @global WP_Post $post 536 * @global WP_Post $post Global post object. 537 537 * @global WP_Comment $comment 538 538 * -
trunk/src/wp-admin/includes/class-wp-media-list-table.php
r45739 r45742 612 612 613 613 /** 614 * @global WP_Post $post 614 * @global WP_Post $post Global post object. 615 615 */ 616 616 public function display_rows() { -
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r45739 r45742 742 742 /** 743 743 * @global wpdb $wpdb WordPress database abstraction object. 744 * @global WP_Post $post 744 * @global WP_Post $post Global post object. 745 745 * @param array $pages 746 746 * @param int $pagenum … … 1261 1261 1262 1262 /** 1263 * @global WP_Post $post 1263 * @global WP_Post $post Global post object. 1264 1264 * 1265 1265 * @param int|WP_Post $post -
trunk/src/wp-admin/includes/export.php
r45739 r45742 26 26 * 27 27 * @global wpdb $wpdb WordPress database abstraction object. 28 * @global WP_Post $post Global `$post`.28 * @global WP_Post $post Global post object. 29 29 * 30 30 * @param array $args { -
trunk/src/wp-admin/includes/revision.php
r45583 r45742 349 349 * @since 4.1.0 350 350 * 351 * @global WP_Post $post The global `$post`object.351 * @global WP_Post $post Global post object. 352 352 */ 353 353 function wp_print_revision_templates() { -
trunk/src/wp-admin/post-new.php
r45224 r45742 13 13 * @global string $post_type 14 14 * @global object $post_type_object 15 * @global WP_Post $post 15 * @global WP_Post $post Global post object. 16 16 */ 17 17 global $post_type, $post_type_object, $post; -
trunk/src/wp-admin/post.php
r45602 r45742 31 31 * @global string $post_type 32 32 * @global object $post_type_object 33 * @global WP_Post $post 33 * @global WP_Post $post Global post object. 34 34 */ 35 35 global $post_type, $post_type_object, $post; -
trunk/src/wp-includes/class-wp-query.php
r45739 r45742 3260 3260 * @since 1.5.0 3261 3261 * 3262 * @global WP_Post $post 3262 * @global WP_Post $post Global post object. 3263 3263 */ 3264 3264 public function the_post() { … … 4327 4327 * @since 3.7.0 4328 4328 * 4329 * @global WP_Post $post 4329 * @global WP_Post $post Global post object. 4330 4330 */ 4331 4331 public function reset_postdata() { -
trunk/src/wp-includes/comment-template.php
r45741 r45742 1304 1304 * 1305 1305 * @global WP_Query $wp_query WordPress Query object. 1306 * @global WP_Post $post 1306 * @global WP_Post $post Global post object. 1307 1307 * @global wpdb $wpdb WordPress database abstraction object. 1308 1308 * @global int $id -
trunk/src/wp-includes/functions.php
r45739 r45742 6347 6347 * @since 4.3.0 6348 6348 * 6349 * @global WP_Post $post 6349 * @global WP_Post $post Global post object. 6350 6350 */ 6351 6351 function wp_post_preview_js() { -
trunk/src/wp-includes/post.php
r45735 r45742 585 585 * @todo Check validity of description. 586 586 * 587 * @global WP_Post $post 587 * @global WP_Post $post Global post object. 588 588 * 589 589 * @param mixed $args Optional. User defined arguments for replacing the defaults. Default empty. … … 698 698 * @since 1.5.1 699 699 * 700 * @global WP_Post $post 700 * @global WP_Post $post Global post object. 701 701 * 702 702 * @param int|WP_Post|null $post Optional. Post ID or post object. Defaults to global $post. … … 3001 3001 } 3002 3002 if ( get_option( 'page_for_posts' ) == $post->ID ) { 3003 delete_option( 'page_for_posts' , 0);3003 delete_option( 'page_for_posts' ); 3004 3004 } 3005 3005 } -
trunk/src/wp-includes/template.php
r45739 r45742 685 685 * 686 686 * @global array $posts 687 * @global WP_Post $post 687 * @global WP_Post $post Global post object. 688 688 * @global bool $wp_did_header 689 689 * @global WP_Query $wp_query WordPress Query object. -
trunk/src/wp-includes/widgets/class-wp-widget-custom-html.php
r45143 r45742 104 104 * @since 4.8.1 105 105 * 106 * @global WP_Post $post 106 * @global WP_Post $post Global post object. 107 * 107 108 * @param array $args Display arguments including 'before_title', 'after_title', 108 109 * 'before_widget', and 'after_widget'. -
trunk/src/wp-includes/widgets/class-wp-widget-text.php
r45611 r45742 214 214 * @since 2.8.0 215 215 * 216 * @global WP_Post $post 216 * @global WP_Post $post Global post object. 217 217 * 218 218 * @param array $args Display arguments including 'before_title', 'after_title',
Note: See TracChangeset
for help on using the changeset viewer.