redaxo_yrewrite icon indicating copy to clipboard operation
redaxo_yrewrite copied to clipboard

Seo Option 'noindex,follow' bei der Funktion getTags()

Open georgkaser opened this issue 2 years ago • 0 comments

Wird in dieser Funktion nicht berücksichtigt: https://github.com/yakamara/redaxo_yrewrite/blob/fec4223026e8f326ab35a7567cfcddaa718f214e/lib/yrewrite/seo.php#L105

        $content = 'noindex, nofollow';
        if (1 == $index || (0 == $index && $this->article->isOnline())) {
            $content = 'index, follow';
        } else if (2 == $index) {
            $content = 'noindex, follow';
        }

georgkaser avatar Sep 09 '22 09:09 georgkaser