如何在WordPress中显示缩略图大小、标题、扩展名?

时间:2020-02-02 作者:SauRav

如何在WordPress中显示缩略图大小、标题和扩展名??enter image description here

1 个回复
最合适的回答,由SO网友:Fouad Badawy 整理而成

使用以下代码,

<?php
    // Get the Featured image ID
    $thumbnail_id = get_post_thumbnail_id( $post->ID );
    $image_data = wp_get_attachment_image_src( $thumbnail_id, \'full\' );

    $image_url    = $image_data[0];
    $image_width  = $image_data[1];
    $image_height = $image_data[2];

    // Caption
    $get_description = get_post( $thumbnail_id )->post_excerpt;

    // Extinsion
    $mime_type = get_post_mime_type( $thumbnail_id );
    $mime_type = explode( \'/\', $mime_type );
    $extinsion = $mime_type[\'1\'];
?>

相关推荐