Kirby
Guest
Member
PHP:
Code:
If an attachment has
Read more
Continue reading...
Code:
Code:
if (!empty($settings['title']))
{
$attributes['alt'] = $this->convertToUtf8($settings['title']);
}
if (!empty($settings['description']))
{
$description = preg_replace( '/[\r\n]/', ' ', $this->convertToUtf8($settings['description']));
if (isset($attributes['alt']))
{
$attributes['alt'] .= " - $description";
}
else
{
$attributes['alt'] = $description;
}
}
title
and description
and both are...Read more
Continue reading...