Permalink on entry title instead of date
Is there a fairly straightforward way to set the permalink to the entry title rather than the date that is displayed for that entry from the entries list?
Yes, but you will need to edit your template's source code. First, make sure you have forked an editable version of your template.
Then open up your template's entries.html file and replace the {{{html}}}
tag in it with the following:
<a href="{{{url}}}">{{{titleTag}}}</a>
{{{body}}}
You can learn more about these tags in the Developer Documentation. Please let me know if you have any questions about this or anything else.
Answered 4 years ago · Edit answer