I really can’t get how placeholders work. I mean, I do know that they are an array value of something, but where are they defined??
In the chunk ditto_blog we have:
<div class="ditto_summaryPost">
<h3><a href="[~[+id+]~]" title="[+title+]">[+title+]</a></h3>
<div class="ditto_info" >By <strong>[+author+]</strong> on [+date+]. <a href="[~[+id+]~]#commentsAnchor">Comments
([!Jot?&docid=`[+id+]`&action=`count-comments`!])</a></div><div class="ditto_tags">Tags: [+tagLinks+]</div>
[+summary+]
<p class="ditto_link">[+link+]</p>
</div>
This is used by ditto to display the posts.
So lets say I want to display only the value of the placeholder [+author+] without using ditto on my single post pages. If i call that in the template, it displays nothing.
How would I find out how does [+author+] gets its value, where is that defined?? Or [+date+] or any of these placeholders??