The attributes for <txp:section /> have been expanded, and there’s a new <txp:category /> tag with similar attributes.

You can use the new attributes to create a navigation list with a specific order, for example:

<ul>
  <txp:section wraptag="li" link=1 title=1 name="about" />
  <txp:section wraptag="li" link=1 title=1 name="articles" />
  <txp:section wraptag="li" link=1 title=1 name="news" />
  <txp:section wraptag="li" link=1 title=1 name="contact" />
</ul>

or:

<ul>
  <txp:category wraptag="li" link=1 title=1 name="products" />
  <txp:category wraptag="li" link=1 title=1 name="weather" />
  <txp:category wraptag="li" link=1 title=1 name="photos" />
</ul>

Both tags are sensitive to the current URL section (though this can be overridden by specifying either in the attributes). <txp:section /> retains its old behaviour, using the current article’s section when used in an article form.