duan20081202 2015-05-13 01:17
浏览 104
已采纳

获取wordpress图像的特定title属性

I would like to ask how to get the specific title attribute of wordpress image from wordpress media?

Those information that are being inputted upon uploading the images life, title, alt captions, description.

  • 写回答

2条回答 默认 最新

  • dongshuxi3105 2015-05-13 04:04
    关注

    You can find specific attribute of wordpress image attachment.

       <?php 
        $attachment_id = 8; // attachment ID
    
        $image_attributes = wp_get_attachment_image_src( $attachment_id ); // returns an array
        if( $image_attributes ) {
        ?> 
        <img src="<?php echo $image_attributes[0]; ?>" width="<?php echo $image_attributes[1]; ?>" height="<?php echo $image_attributes[2]; ?>">
        <?php } ?>
    
        An array containing: 
    
        [0] => url
        [1] => width
        [2] => height
        [3] => boolean: true if $url is a resized image, false if it is the original or if no image is available.
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?