Go to main content

If last link

Contents

Syntax

<txp:if_last_link>

The if_last_link tag is a conditional tag and always used as an opening and closing pair, like this…

<txp:if_last_link>
    …conditional statement…
</txp:if_last_link>

The tag will execute the contained statements if the displayed link is the last in the currently displayed linklist. The tag supports else.

Attributes

This tag has no attributes of its own. It accepts only the global attributes .

Examples

<txp:linklist break="" wraptag="ul" sort="date desc">
    <txp:if_last_link>
        <li class="earliest">
            <txp:link /> (My first link)
        </li>
    <txp:else />
        <li>
            <txp:link />
        </li>
    </txp:if_last_link>
</txp:linklist>

Other tags used: else, link, linklist.

Genealogy

Version 4.6.0

Tag support added.

If you notice any kind of problem with this page's construction or content (outdated information, typos, broken links, or whatever), open an issue to have it sorted. Or have a go at it yourself. :)