1697<?php1698 * @since 4.6.0 Added the `$thumbnail_id` parameter.1699 *1700 * @param string $content Admin post thumbnail HTML markup.1701 * @param int $post_id Post ID.1702 * @param int|null $thumbnail_id Thumbnail attachment ID, or null if there isn't one.1703 */1704 return apply_filters( 'admin_post_thumbnail_html', $content, $post->ID, $thumbnail_id );1705}17061707/**1708 * Determines whether the post is currently being edited by another user.1709 *1710 * @since 2.5.0
History
Introduced in 2.9.0. Unchanged from 6.7.7 through 7.1.0.