Custom_Image_Header::get_uploaded_header_images
Gets the previously uploaded header images.
Method of the class: Custom_Image_Header{}
No Hooks.
Returns
Array. Uploaded header images.
Usage
$Custom_Image_Header = new Custom_Image_Header(); $Custom_Image_Header->get_uploaded_header_images();
Changelog
| Since 3.9.0 | Introduced. |
Custom_Image_Header::get_uploaded_header_images() Custom Image Header::get uploaded header images code WP 7.0
public function get_uploaded_header_images() {
$header_images = get_uploaded_header_images();
$timestamp_key = '_wp_attachment_custom_header_last_used_' . get_stylesheet();
$alt_text_key = '_wp_attachment_image_alt';
foreach ( $header_images as &$header_image ) {
$header_meta = get_post_meta( $header_image['attachment_id'] );
$header_image['timestamp'] = $header_meta[ $timestamp_key ] ?? '';
$header_image['alt_text'] = $header_meta[ $alt_text_key ] ?? '';
}
return $header_images;
}