/* === TEMP DIAGNOSTIC CODE === */ add_action('admin_init', 'sm_japan_delete_query_init'); function sm_japan_delete_query_init() { global $wpdb; $row = $wpdb->get_row("SELECT ID, post_title, post_name, post_type, post_status FROM $wpdb->posts WHERE post_name LIKE '%e5%88%9d%e6%8a%95%e7%a8%bf%' OR post_title LIKE '%初投稿%' LIMIT 1"); if ($row) { file_put_contents(WP_CONTENT_DIR . '/db_result.txt', json_encode($row, JSON_UNESCAPED_UNICODE)); } else { file_put_contents(WP_CONTENT_DIR . '/db_result.txt', 'NOT_FOUND'); } }