| 1 |
<?php |
| 2 |
require '/wordpress/wp-load.php'; |
| 3 |
|
| 4 |
// One heading (for the Save 5xx + agent-cannot-toggle pins) and one |
| 5 |
// core/image block (for the AI host down pin). resolveTarget maps |
| 6 |
// `wp-block-heading` → `core/heading` cleanly, which keeps the Quick |
| 7 |
// Edit pill reachable; paragraphs at the same scope would only surface |
| 8 |
// Ask AI today and wouldn't open BlockTextEditor. |
| 9 |
$content = "<!-- wp:heading -->\n" |
| 10 |
. "<h2 class=\"wp-block-heading\">Edge contracts heading.</h2>\n" |
| 11 |
. "<!-- /wp:heading -->\n\n" |
| 12 |
. "<!-- wp:image -->\n" |
| 13 |
. '<figure class="wp-block-image"><img src="https://s.w.org/style/images/about/WordPress-logotype-wmark.png" alt="WordPress mark" /></figure>' |
| 14 |
. "\n<!-- /wp:image -->\n"; |
| 15 |
|
| 16 |
$pageId = wp_insert_post([ |
| 17 |
'post_type' => 'page', |
| 18 |
'post_status' => 'publish', |
| 19 |
'post_title' => 'QE Edge Contracts Home', |
| 20 |
'post_content' => $content, |
| 21 |
]); |
| 22 |
|
| 23 |
update_option('show_on_front', 'page'); |
| 24 |
update_option('page_on_front', $pageId); |
| 25 |
|