Displaying A Link Directly To The Extra Field Image?
Friends! If you want to display link directly to your extra field image then you must strip the default code that K2 uses to insert the image into it’s foreach loop.
You can do it by inserting this directly into your item.php override file.
You can do it by inserting this directly into your item.php override file.
<?php
$var = $this->item->extraFields->Image->value ;
$var = preg_replace(‘/<img src=”/’,””,$var);
$var = preg_replace(‘/” alt=”Image” \>/’,” “,$var);
echo ‘<a href=”‘ . $var . “TextOfLink” . “</a>” ;
?>
$var = $this->item->extraFields->Image->value ;
$var = preg_replace(‘/<img src=”/’,””,$var);
$var = preg_replace(‘/” alt=”Image” \>/’,” “,$var);
echo ‘<a href=”‘ . $var . “TextOfLink” . “</a>” ;
?>
Latest posts by LT Digital Team (Content & Marketing) (see all)
- What is a Domain Name and How Do Domains Work? - July 24, 2024
- Beginner’s Guide to WordPress File and Directory Structure - July 20, 2024
- How to Easily Add Custom Code in WordPress (Without Breaking Your Site) - July 18, 2024
Recent Comments