在为图片上传创建CMB2 file_list以填充图库时,CMB2 online示例显示选项,如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', '');发布于 2019-05-20 12:11:43
您可以为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++;
}
}https://stackoverflow.com/questions/56201419
复制相似问题