diff --git src/wp-includes/class-wp-editor.php src/wp-includes/class-wp-editor.php
index bd73540bc9..a3ea3e6674 100644
|
|
|
final class _WP_Editors {
|
| 148 | 148 | * Outputs the HTML for a single instance of the editor. |
| 149 | 149 | * |
| 150 | 150 | * @since 3.3.0 |
| | 151 | * @global WP_Screen $current_screen WordPress current screen object. |
| 151 | 152 | * |
| 152 | 153 | * @param string $content Initial content for the editor. |
| 153 | 154 | * @param string $editor_id HTML ID for the textarea and TinyMCE and Quicktags instances. |
diff --git src/wp-includes/class-wp-fatal-error-handler.php src/wp-includes/class-wp-fatal-error-handler.php
index 842182d483..51a1a248c6 100644
|
|
|
class WP_Fatal_Error_Handler {
|
| 25 | 25 | * This method is registered via `register_shutdown_function()`. |
| 26 | 26 | * |
| 27 | 27 | * @since 5.2.0 |
| | 28 | * @global WP_Locale $wp_locale WordPress date and time locale object. |
| 28 | 29 | */ |
| 29 | 30 | public function handle() { |
| 30 | 31 | if ( defined( 'WP_SANDBOX_SCRAPING' ) && WP_SANDBOX_SCRAPING ) { |
diff --git src/wp-includes/deprecated.php src/wp-includes/deprecated.php
index e98cad915f..7af395309e 100644
|
|
|
function get_postdata($postid) {
|
| 56 | 56 | * @link https://developer.wordpress.org/themes/basics/the-loop/ |
| 57 | 57 | * |
| 58 | 58 | * @since 1.0.1 |
| | 59 | * @global WP_Query $wp_query WordPress Query object. |
| 59 | 60 | * @deprecated 1.5.0 |
| 60 | 61 | */ |
| 61 | 62 | function start_wp() { |
| … |
… |
function unregister_widget_control($id) {
|
| 2214 | 2215 | * Remove user meta data. |
| 2215 | 2216 | * |
| 2216 | 2217 | * @since 2.0.0 |
| | 2218 | * @global wpdb $wpdb WordPress database abstraction object. |
| 2217 | 2219 | * @deprecated 3.0.0 Use delete_user_meta() |
| 2218 | 2220 | * @see delete_user_meta() |
| 2219 | 2221 | * |
| … |
… |
function get_usermeta( $user_id, $meta_key = '' ) {
|
| 2313 | 2315 | * Will remove the metadata, if the meta value is empty. |
| 2314 | 2316 | * |
| 2315 | 2317 | * @since 2.0.0 |
| | 2318 | * @global wpdb $wpdb WordPress database abstraction object. |
| 2316 | 2319 | * @deprecated 3.0.0 Use update_user_meta() |
| 2317 | 2320 | * @see update_user_meta() |
| 2318 | 2321 | * |
| … |
… |
function index_rel_link() {
|
| 2751 | 2754 | * Get parent post relational link. |
| 2752 | 2755 | * |
| 2753 | 2756 | * @since 2.8.0 |
| | 2757 | * @global WP_Post $post Global post object. |
| 2754 | 2758 | * @deprecated 3.3.0 |
| 2755 | 2759 | * |
| 2756 | 2760 | * @param string $title Optional. Link title format. Default '%title'. |
diff --git src/wp-includes/feed-atom-comments.php src/wp-includes/feed-atom-comments.php
index 37f663a337..02916ba37d 100644
|
|
|
do_action( 'rss_tag_pre', 'atom-comments' );
|
| 67 | 67 | do_action( 'comments_atom_head' ); |
| 68 | 68 | ?> |
| 69 | 69 | <?php |
| | 70 | /** |
| | 71 | * @global WP_Post $post Global post object. |
| | 72 | */ |
| 70 | 73 | while ( have_comments() ) : |
| 71 | 74 | the_comment(); |
| 72 | 75 | $comment_post = get_post( $comment->comment_post_ID ); |
diff --git src/wp-includes/feed-rss2-comments.php src/wp-includes/feed-rss2-comments.php
index e0e664edaa..8c3a3d4253 100644
|
|
|
do_action( 'rss_tag_pre', 'rss2-comments' );
|
| 70 | 70 | */ |
| 71 | 71 | do_action( 'commentsrss2_head' ); |
| 72 | 72 | |
| | 73 | /** |
| | 74 | * @global WP_Post $post Global post object. |
| | 75 | */ |
| 73 | 76 | while ( have_comments() ) : |
| 74 | 77 | the_comment(); |
| 75 | 78 | $comment_post = get_post( $comment->comment_post_ID ); |