Adding Photo Titles to alt tags | Displaying captions

2 posts by 2 authors in: Forums > CMS Builder
Last Post: October 21, 2008   (RSS)

By meg - October 20, 2008

What php command do I use to display the title of the photo (in a photo gallery setting) in an alt tag?

If I wanted to display the caption, what command would I use?

Re: [meg] Adding Photo Titles to alt tags | Displaying captions

By Ryan - October 21, 2008 - edited: October 21, 2008

Hi Meg, try using these

<?php echo $upload['info1'] ?> (This displays the photos title)

<?php echo $upload['info2'] ?> (This displays the photos caption)

Example

alt="<?php echo $upload['info1'] ?>"

Ryan