Hi everyone, I can't find how to display my tags on my posts, on usual posts no problem, but since it's a plugin, things seems a bit more complicated...
I found in the plugin code the place where the code indicate what to display on each posts :
`
$html .= "<h2 class='title'>{$title}</h2>";
$html .= $content;
$html .= "<p>blopiblop</p>"; //// My test to see if It's the right place
$html .= "<p><?php the_tags(); ?></p>"; /// Don't work.
$html .= "</div>";
`
http://jsfiddle.net/jhruahfd/5/ Line 630
I'm not at all an expert in WP/PHP/AJAX , just started to learn ( but I do know html/css ).
Thanks a lot.