Código PHP:
$this->plugin('ahref', "index.php?option=$this->option&task=listcats&cat_id=$cat->cat_id&Itemid=$this->Itemid", htmlspecialchars($cat->cat_name) );
Cita:
y al intentar ponerlo en formato simple me da error pq dentro del href hay php.
Código PHP:
echo '<a href="index.php?option=$this->option&task=listcats&cat_id=$cat->cat_id&Itemid=$this->Itemid" title="title" id="productthumbbig0" class="productthumbbigtitle">'.htmlspecialchars($cat->cat_name).'';
En fin mi problema es que no puedo agregar este class
class="productthumbbigtitle"
a este pedazo de código
Código PHP:
$this->plugin('ahref', "index.php?option=$this->option&task=listcats&cat_id=$cat->cat_id&Itemid=$this->Itemid", htmlspecialchars($cat->cat_name) );
Iván Rivera