XF 2.1 thread noindex and cannocial

aana

Active member
hello,

i would like to know if this code still valid with Xenforo 2.1 and if its still need to be set in forum_view, thread_view only.

did somehone know ?

Code:
<xen:if is="in_array({$thread.node_id}, array(1,2))">
    <xen:container var="$head.robots">
        <meta name="robots" content="noindex" />
    </xen:container>
<xen:else />
    <xen:container var="$head.canonical">
        <link rel="canonical" href="{xen:link 'canonical:threads', $thread, 'page={$page}'}" />
    </xen:container>
</xen:if>
 
Top Bottom