Seo
At the moment this is not possible.
You can post a feature request at
https://github.com/bludit/bludit/issues
You can post a feature request at
https://github.com/bludit/bludit/issues
Planet Bludit, Tipps, Snippets und nützliche Links. - Newsletter, Informationen zu Bludit (auf Deutsch).
if you modify head.php with something like
it is possible. There should be a bit more logic to do it correctly though...
Code: Select all
if ($WHERE_AM_I == 'category') {
echo '<meta name = "robots" content = "noindex, follow">';
}
bludit plugins and themes - makeitblu | I do things, check them out on behance | check out startups undiluted - london's startup ecosystem
I think this is better:
Code: Select all
<?php
if ($WHERE_AM_I == 'category') {
echo '<meta name = "robots" content = "noindex, noarchive">';
}
?>
<?php
if ($WHERE_AM_I == 'tag') {
echo '<meta name = "robots" content = "noindex, noarchive">';
}
?>