Make WordPress Core

Ticket #46503: #46503.2.diff

File #46503.2.diff, 2.2 KB (added by immeet94, 6 years ago)

Please see this file for updated patch.

  • wp-includes/class-wp-query.php

     
    32363236         *
    32373237         * @since 1.5.0
    32383238         *
    3239          * @global WP_Post $post
     3239         * @global WP_Post $post Global $post.
    32403240         */
    32413241        public function the_post() {
    32423242                global $post;
     
    42434243         *
    42444244         * @since 3.7.0
    42454245         *
    4246          * @global WP_Post $post
     4246         * @global WP_Post $post Global $post.
    42474247         */
    42484248        public function reset_postdata() {
    42494249                if ( ! empty( $this->post ) ) {
  • wp-includes/post.php

     
    580580 * @see get_posts()
    581581 * @todo Check validity of description.
    582582 *
    583  * @global WP_Post $post
     583 * @global WP_Post $post Global $post.
    584584 *
    585585 * @param mixed  $args   Optional. User defined arguments for replacing the defaults. Default empty.
    586586 * @param string $output Optional. The required return type. One of OBJECT, ARRAY_A, or ARRAY_N, which correspond to
  • wp-includes/widgets/class-wp-widget-custom-html.php

     
    103103         *
    104104         * @since 4.8.1
    105105         *
    106          * @global WP_Post $post
     106         * @global WP_Post $post  Global $post.
    107107         * @param array $args     Display arguments including 'before_title', 'after_title',
    108108         *                        'before_widget', and 'after_widget'.
    109109         * @param array $instance Settings for the current Custom HTML widget instance.
  • wp-includes/widgets/class-wp-widget-text.php

     
    212212         *
    213213         * @since 2.8.0
    214214         *
    215          * @global WP_Post $post
     215         * @global WP_Post $post  Global $post.
    216216         *
    217217         * @param array $args     Display arguments including 'before_title', 'after_title',
    218218         *                        'before_widget', and 'after_widget'.