diff --git a/src/wp-admin/includes/template.php b/src/wp-admin/includes/template.php
index 4846fcd..694d609 100644
a
|
b
|
function get_inline_data($post) { |
337 | 337 | if ( post_type_supports( $post->post_type, 'post-formats' ) ) |
338 | 338 | echo '<div class="post_format">' . esc_html( get_post_format( $post->ID ) ) . '</div>'; |
339 | 339 | |
| 340 | /** |
| 341 | * Fires after getting the inline data |
| 342 | * |
| 343 | * @since 4.9.0 |
| 344 | * |
| 345 | * @param WP_Post $post Current post object |
| 346 | */ |
| 347 | do_action( 'add_inline_data', $post ); |
| 348 | |
340 | 349 | echo '</div>'; |
341 | 350 | } |
342 | 351 | |
… |
… |
function wp_import_upload_form( $action ) { |
892 | 901 | * @param string|array|WP_Screen $screen Optional. The screen or screens on which to show the box |
893 | 902 | * (such as a post type, 'link', or 'comment'). Accepts a single |
894 | 903 | * screen ID, WP_Screen object, or array of screen IDs. Default |
895 | | * is the current screen. If you have used add_menu_page() or |
| 904 | * is the current screen. If you have used add_menu_page() or |
896 | 905 | * add_submenu_page() to create a new screen (and hence screen_id), |
897 | 906 | * make sure your menu slug conforms to the limits of sanitize_key() |
898 | 907 | * otherwise the 'screen' menu may not correctly render on your page. |