php 特色图像输出

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 特色图像输出相关的知识,希望对你有一定的参考价值。

<?php
$img_id = get_post_thumbnail_id($post->ID); // This gets just the ID of the img
$image = wp_get_attachment_image_src($img_id, $optional_size); // Get URL of the image, and size can be set here too (same as with get_the_post_thumbnail, I think)
$alt_text = get_post_meta($img_id , '_wp_attachment_image_alt', true);

以上是关于php 特色图像输出的主要内容,如果未能解决你的问题,请参考以下文章