Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从 Xenforo 中的某些媒体库类别的搜索中排除,但它不起作用。
我在 xfmg_media_view 模板中添加了以下代码。
<xf:if is="{$media.category_id} == 1"> <meta name="robots" content="noindex"> </xf:if>
任何人都知道如何解决它?
这是正确的条件
<xf:if is="{$xf_mg_media_item.category_id} == 1"> <meta name="robots" content="noindex"> </xf:if>