不确定你的意思是title
标题中的属性或标题。下面的代码将图像标题作为标题进行回显。
编辑-向上投票@s\\u ha\\u dum的答案,因为看起来您正在寻找标题属性。
EDIT-\'wp\\u get\\u attachment\\u image\\u src\'返回图像URL位于第一个位置的数组。
<?php
if ( has_post_thumbnail()) {
$your_thumb_id = get_post_thumbnail_id();
$args = array(
\'post_type\' => \'attachment\',
\'numberposts\' => 1,
\'post_status\' => null,
\'p\' => $your_thumb_id
);
$attachments = get_posts( $args );
if ( $attachments ) {
foreach ( $attachments as $attachment ) {
$large_src = wp_get_attachment_image_src( $attachment->ID, \'large\' );
echo \'<a href="\' . $large_src[0] . \'">\';
echo wp_get_attachment_image($attachment->ID,\'medium\');
echo \'</a>\';
echo \'<p>\';
echo apply_filters( \'the_title\', $attachment->post_title );
echo \'</p>\';
}
}
} ?>