<txp:title /> single tag, 1 attributes

title

The title tag is a single tag which is used to return the title of the article being displayed. It is usually used in an article form.

attributes

no_widow="Whatever is set in Advanced Preferences" (boolean)
  • 0 – allow the last word in the title to appear on its own line, i.e. the title content is rendered unchanged
  • 1 – ensure the last word is not left on its own line. Textpattern inserts an invisible code — a non-breaking space — between the last two words
<txp:title /> 2 examples

Display an article title

<h2><txp:title /></h2>
<div class="post">
  <txp:author /> @ <txp:posted /><br /><txp:body />
</div>

What this does…
Shows the current article title as the page heading, a few other pieces of information such as the article’s author and posted date, then the article body itself.

Other tags used: author, posted

Display a hyperlinked title

<txp:permlink><txp:title /></txp:permlink> 

What this does…
Wraps a permanent link to the current article around its title.

Other tags used: permlink