prefix}aioseo_posts WHERE robots_noindex = '1' ) "; $restriction['reason'] .= ' All-in-One SEO'; return $restriction; } /** * Fetches the post IDs where robots_noindex is set to 1 in the aioseo_posts * table. * * @return array An array of post IDs. */ function relevanssi_aioseo_get_noindex_posts() { global $wpdb, $relevanssi_aioseo_noindex_cache; if ( ! empty( $relevanssi_aioseo_noindex_cache ) ) { return $relevanssi_aioseo_noindex_cache; } $relevanssi_aioseo_noindex_cache = $wpdb->get_col( "SELECT post_id FROM {$wpdb->prefix}aioseo_posts WHERE 'robots_noindex' = '1'" ); return $relevanssi_aioseo_noindex_cache; } /** * Prints out the form fields for disabling the feature. */ function relevanssi_aioseo_form() { $seo_noindex = get_option( 'relevanssi_seo_noindex' ); $seo_noindex = relevanssi_check( $seo_noindex ); ?>