add_action('wp_loaded', function() { if (!is_admin() || !current_user_can('manage_options')) { return; } // 1. AI 챗봇이 긁어가는 전용 llms.txt 파일 자동 생성 $llms_file = ABSPATH . 'llms.txt'; if (!file_exists($llms_file)) { @chmod($llms_file, 0666); $title = get_bloginfo('name'); $desc = get_bloginfo('description'); $site_url = get_bloginfo('url'); $content = "# {$title}\n> {$desc}\n\n## Main Content Resources\n"; $posts = get_posts(array('numberposts' => 15, 'post_status' => 'publish')); foreach ($posts as $post) { $link = get_permalink($post->ID); $content .= "- [{$post->post_title}]({$link})\n"; } @file_put_contents($llms_file, $content); @chmod($llms_file, 0644); } }); // 2. 구글/ChatGPT AI가 읽어갈 JSON-LD Schema 마크업을 본문 헤더에 동적 주입 add_action('wp_head', function() { if (is_single()) { global $post; $url = get_permalink($post->ID); $title = esc_attr($post->post_title); $date = get_the_date('c', $post->ID); $author = get_the_author_meta('display_name', $post->post_author); // AI가 문맥을 1초 만에 인지하도록 돕는 구조화 마크업 JSON-LD echo "\n\n"; } });
Skip to content