wp_ajax_get_post_thumbnail_html()
Handles retrieving HTML for the featured image via AJAX.
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
wp_ajax_get_post_thumbnail_html();
Список изменений
С версии 4.6.0 | Введена. |
Код wp_ajax_get_post_thumbnail_html() wp ajax get post thumbnail html WP 6.8.1
function wp_ajax_get_post_thumbnail_html() { $post_id = (int) $_POST['post_id']; check_ajax_referer( "update-post_$post_id" ); if ( ! current_user_can( 'edit_post', $post_id ) ) { wp_die( -1 ); } $thumbnail_id = (int) $_POST['thumbnail_id']; // For backward compatibility, -1 refers to no featured image. if ( -1 === $thumbnail_id ) { $thumbnail_id = null; } $return = _wp_post_thumbnail_html( $thumbnail_id, $post_id ); wp_send_json_success( $return ); }