/** * Generates draft post with text only (no thumbnail, no SEO/ALT). * Returns WP_Error|int post_id. */ function ai_cw_generate_text_draft( $params ){ // unpack parameters list($category_id, $post_topic, $related_articles, $selected_language, $selected_post_status, $single_post_additional_request, $author ) = $params; // === copy logic from ai_content_wizard_generate_single_post up to wp_insert_post() === // to avoid copy-paste explosion we call original generator but temporarily force-disable // thumbnail, SEO and ALT through globals. $GLOBALS['ai_cw_skip_thumbnail'] = true; $GLOBALS['ai_cw_skip_seo_alt'] = true; $post_id = ai_content_wizard_generate_single_post( $category_id, $post_topic, $related_articles, $selected_language, $selected_post_status, $single_post_additional_request, $author ); // unset flags so they do not leak unset($GLOBALS['ai_cw_skip_thumbnail'], $GLOBALS['ai_cw_skip_seo_alt']); return $post_id; } Hello world! - ai.allfixpro.de

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

Comments

One response to “Hello world!”

  1. A WordPress Commenter Avatar

    Hi, this is a comment.
    To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
    Commenter avatars come from Gravatar.

Leave a Reply to A WordPress Commenter Cancel reply

Your email address will not be published. Required fields are marked *