如何将图像 alt 和标题标签添加到 WordPress 图像
我正在尝试向 WordPress 图像库中的每个图像添加图像 alt 和标题文本,但似乎无法使其工作。这是我的代码:
<?php
$events = get_group('Gallery');
foreach($events as $event){
for($i=1;$i<4;$i++) {
if(empty($event['gallery_gallery_image_'.$i]))
continue
;
$image = $event['gallery_gallery_image_'.$i];
?>
<a href="<?php echo $image[1]['o']; ?>"><img src="<?php echo $image[1]['t']; ?>" /></a>
<?php } }?>
任何帮助将不胜感激
I'm trying to add an image alt and title text to each image in an image gallery in wordpress but can't seem to make it work. Here's my code:
<?php
$events = get_group('Gallery');
foreach($events as $event){
for($i=1;$i<4;$i++) {
if(empty($event['gallery_gallery_image_'.$i]))
continue
;
$image = $event['gallery_gallery_image_'.$i];
?>
<a href="<?php echo $image[1]['o']; ?>"><img src="<?php echo $image[1]['t']; ?>" /></a>
<?php } }?>
any help would be much appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想将它们添加为静态还是动态?
如果它是静态的,只需将其添加到标签之后
,如果不是,只需添加动态变量名称,就像您在 echo $image.. 中所做的那样
。更改 $image[1]['alt'] && $图像[1]['标题']; (title & alt 是 ur 变量的名称)
do you want to add them as static or dynamic ?
if it's static just add it after the tag
if not , just add the dynamic variable name like you did in your echo $image..
change $image[1]['alt'] && $image[1]['title']; (title & alt are the name of ur variables)