テキスト文字列プロパティ「externalURL」を Doctype に追加しました。テキスト文字列に外部 URL を入力し、そのリンクがナビゲーション内でクリックされたときにそのリンクが外部 URL にリダイレクトされるようにします。
ただし、以下は機能しません。
<a>
<xsl:attribute name="href">
<xsl:choose>
<xsl:when test="string(externalUrl) != ''">
<xsl:value-of select="externalUrl" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="umbraco.library:NiceUrl(@id)" />
</xsl:otherwise>
</xsl:choose>
</xsl:attribute>
<xsl:if test="descendant-or-self::*[@id = $currentPage/@id]">
<xsl:attribute name="class">current</xsl:attribute>
</xsl:if>
<xsl:value-of select="@nodeName" />
</a>
誰でもこれを手伝ってもらえますか?