| 1 |
<?php |
| 2 |
require '/wordpress/wp-load.php'; |
| 3 |
|
| 4 |
// Mixed block content for the QE → Agent handoff characterization: |
| 5 |
// - First heading: eligible for both Quick Edit and Ask AI. |
| 6 |
// - Spacer: wp-block-spacer class triggers IGNORED_CLASS_RX in |
| 7 |
// agent-gate.js, so the hover bar must not surface Ask AI. |
| 8 |
// - Post title: wp-block-post-* matches the same IGNORED_CLASS_RX. |
| 9 |
// - Second heading: also eligible — used to drive the selection-lock |
| 10 |
// assertion after the first heading has been picked. |
| 11 |
$content = "<!-- wp:heading -->\n" |
| 12 |
. "<h2 class=\"wp-block-heading\">First heading for Ask AI handoff.</h2>\n" |
| 13 |
. "<!-- /wp:heading -->\n\n" |
| 14 |
. "<!-- wp:spacer -->\n" |
| 15 |
. "<div style=\"height:80px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n" |
| 16 |
. "<!-- /wp:spacer -->\n\n" |
| 17 |
. "<!-- wp:post-title /-->\n\n" |
| 18 |
. "<!-- wp:heading -->\n" |
| 19 |
. "<h2 class=\"wp-block-heading\">Second heading for selection lock.</h2>\n" |
| 20 |
. "<!-- /wp:heading -->\n"; |
| 21 |
|
| 22 |
$pageId = wp_insert_post([ |
| 23 |
'post_type' => 'page', |
| 24 |
'post_status' => 'publish', |
| 25 |
'post_title' => 'QE Agent Handoff Home', |
| 26 |
'post_content' => $content, |
| 27 |
]); |
| 28 |
|
| 29 |
update_option('show_on_front', 'page'); |
| 30 |
update_option('page_on_front', $pageId); |
| 31 |
|