如何将图像 alt 和标题标签添加到 WordPress 图像

发布于 2024-11-16 23:24:02 字数 462 浏览 0 评论 0原文

我正在尝试向 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

℡寂寞咖啡 2024-11-23 23:24:02

您想将它们添加为静态还是动态?

如果它是静态的,只需将其添加到标签之后

<img alt='xyz' title='abc' src="<?php echo $image[1]['t']; ?>

,如果不是,只需添加动态变量名称,就像您在 echo $image.. 中所做的那样

<a title="<?php  echo $image[1]['title']; ?>" href="<?php  echo $image[1]['o']; ?>"><img alt="<?php  echo $image[1]['alt']; ?>" src="<?php echo $image[1]['t']; ?>" /></a>

。更改 $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

<img alt='xyz' title='abc' src="<?php echo $image[1]['t']; ?>

if not , just add the dynamic variable name like you did in your echo $image..

<a title="<?php  echo $image[1]['title']; ?>" href="<?php  echo $image[1]['o']; ?>"><img alt="<?php  echo $image[1]['alt']; ?>" src="<?php echo $image[1]['t']; ?>" /></a>

change $image[1]['alt'] && $image[1]['title']; (title & alt are the name of ur variables)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文