here is an example, I wanted to display Title, date. tags, summary
https://drive.google.com/file/d/1J85KbBNZU14Ue-Y1cVufhac7TjkoA2rC/view?usp=drivesdk
I hope to have real help.
Marco
Hi marcobe!
Thank you for the inquiry.
We have to modify the enfold\config-templatebuilder\avia-shortcodes\postslider\postslider.php file and use the get_the_tags function to fetch the tags. Look for this code around line 866:
$meta .= "<time class='slide-meta-time updated' $markup>" . get_the_time( get_option( 'date_format' ), $the_id ) . '</time>';
Below you can use this function.
// https://developer.wordpress.org/reference/functions/get_the_tags/
$tags = "";
$posttags = get_the_tags($the_id);
if ($posttags) {
foreach($posttags as $tag) {
$tags .= $tag->name . ', ';
}
$meta .= $tags;
}
Cheers!
Ismael