Hi,
Firstly I’d like to congratulate you on the cool theme, I find it very useful and flexible, but… :)
I have a question,
how to add category-name to class in article tag in Grid Layout ?
To something like that e.g:
<article class='... category-name ...' itemscope="itemscope" itemtype="http://schema.org/BlogPosting">
It is added by default in other blog layouts like multi and single-author layouts.
Thanks, Sebastian
Hi Sebastian!
Thank you for using the theme!
Please edit config-templatebuilder > avia-shortcodes > postslider.php, find this code on line 364:
$markup = avia_markup_helper(array('context' => 'entry','echo'=>false));
$output .= "<article class='slide-entry flex_column {$style} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>";
Replace it with this:
$gridcat = get_the_category($the_id);
$gridclass = strtolower($gridcat[0]->cat_name);
$markup = avia_markup_helper(array('context' => 'entry','echo'=>false));
$output .= "<article class='slide-entry flex_column {$style} {$gridclass} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>";
Cheers!
Ismael
Thanks!
It works perfectly well ! :)