• Errors showed when update a post:

    WordPress database error: [Unknown column ‘robotsmeta’ in ‘field list’]
    UPDATE wp_posts SET robotsmeta = ‘index,follow’ WHERE ID = 627

    WordPress database error: [Unknown column ‘robotsmeta’ in ‘field list’]
    UPDATE wp_posts SET robotsmeta = ‘index,follow’ WHERE ID = 586

    Warning: Cannot modify header information – headers already sent by (output started at /homepages/9/d271604408/htdocs/samdiener/wp-includes/wp-db.php:587) in /homepages/9/d271604408/htdocs/samdiener/wp-includes/pluggable.php on line 865

    I hope the plugin developers solve this !!!

    https://www.ads-software.com/extend/plugins/bad-behavior/

Viewing 2 replies - 1 through 2 (of 2 total)
  • This does not look like an error with Bad Behavior.

    You could drop the “robots-meta” plugin all together by using conditional wordpress tags in your header.

    Here is an example that will allow indexing the main index page (aka home page) as well as single posts and pages or the category archives:

    <?php
    if((is_home() && is_front_page() && !is_paged()) || is_single() || is_page() || is_category()) {
    ?>
    <meta name="robots" content="noodp,noydir" />
    <?php
    } else {
    ?>
    <meta name="robots" content="noindex,noarchive,noodp,noydir" />
    <?php
    }
    ?>

    You’ll find ample information about those ‘is_page()’ and ‘is_category()’ etc. here at www.ads-software.com!

    Maybe that helps you out?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Bad Behavior Conflicting with Robots-Meta’ is closed to new replies.