在为上传的图像创建CMB2文件列表以填充图库时,CMB2在线示例倾向于显示诸如img alt标签之类的选项并向图像添加类。我不知道如何访问图像,只能通过下面提供的代码访问。我需要为图库中的第一张图片添加一个类,并添加alt标签吗?如果有人可以帮助我,我将非常感激!
function cmb2_output_file_list( $file_list_meta_key, $img_size = '' ) {
// Get the list of files
$files = get_post_meta( get_the_ID(), $file_list_meta_key, 1 );
// Loop through them and output an image
foreach ( (array) $files as $attachment_id => $attachment_url ) {
echo '<div class="slide">';
echo wp_get_attachment_image( $attachment_id, $img_size);
echo '</div>';
}
}
cmb2_output_file_list( 'bs_bautage_pic', '');
答案 0 :(得分:0)
您可以在wp_get_attachment_image()
中为第四个参数传递条件参数。第四个参数用于自定义属性。在该函数中,仅为第一个图像添加自定义属性。请检查以下示例。
function cmb2_output_file_list( $file_list_meta_key, $img_size = '' ) {
$files = get_post_meta( get_the_ID(), $file_list_meta_key, 1 );
$counter = 0;
foreach ( (array) $files as $attachment_id => $attachment_url ) {
echo '<div class="slide">';
$args = array();
if ( 0 === $counter ) {
$args = array(
'alt' => 'Sample Text',
'class' => 'custom-class',
);
}
echo wp_get_attachment_image( $attachment_id, $img_size, false, $args );
echo '</div>';
$counter++;
}
}