0

是否可以在未翻译的帖子和页面中输入元机器人 noindex?

当然,已经翻译的版本必须保持可索引...

我有 Yoast SEO 插件兼容,但我无法更改每种语言的元机器人。

4

1 回答 1

0

只需将其放在主题的标题中即可。我使用的语言插件是 qtranslate:

<!--Begin add noindex and nofolllow when not translated post in current lang-->
<?php if ( have_posts() && is_single() ) : while ( have_posts() ) : the_post();
    $lang_current =qtranxf_getLanguage();
    $id = get_the_id();
    $exist_translate = qtranxf_isAvailableIn($id, $lang_current);
    if (! ($exist_translate) ) : ?>
        <meta name=“robots” content=“noindex,nofollow”&gt;
    <?php endif;?>
<?php endwhile;?>
<?php endif; ?>
<!--End add noindex and nofolllow when not translate post in current language-->
于 2018-01-10T15:08:15.097 回答