Your sites Log in Sign up Menu

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?


3 years ago, 2 replies   developers   Improve this question

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 3 years ago · Improve this answer

That worked. Thank you.

Answered 3 years ago · Improve this answer