Sessions 3-4 deliverables. Establishes the Asterion content pipeline :
EN pages generated programmatically from content-source/*-data.php, FR
translations rebuilt natively by Bricks's WPML integration from EN structure
+ WPML strings (no direct FR _bricks_page_content_2 writes).
## tools/_av-bricks-shared.php (the library)
Shared helpers + element atoms (eyebrow/heading/text/button/text-link) +
section builders (hero/prose/list/cards/cta/upsell/closer) + page write
pipeline that handles : write EN content via $wpdb (bypass Bricks's filter),
force Bricks::Elements::load_elements() so controls are populated, fire
wpml_page_builder_register_strings, push dict FR into icl_string_translations
(skip user CTE edits, auto-prefix /fr on internal URLs), trigger Bricks
native FR rebuild via wpml_page_builder_string_translated, and ensure a CTE
job exists (icl_translate_job.editor='wpml' + revision=NULL + populate
icl_translate rows with base64+gzip-encoded EN/FR strings).
## tools/av-generate-{industries,solutions}.php
Thin wrappers : URL trigger (template_redirect, not init — Bricks elements
load on 'wp' hook), add_filter('av_fr_translation_dict', ...) to register
FR strings, content-type-specific hub builder. ~150 FR strings per type.
## tools/av-translate-{industries,solutions}-fr.php
One-shot seeds for the initial FR linked posts via WPML trid mapping.
## tools/av-wpml-* operational mu-plugins
- set-cte : switch doc_translation_method to ICL_TM_TMETHOD_EDITOR (=1)
- create-jobs : reset CTE jobs (status=10 + needs_update=1 + editor=wpml +
revision=NULL). Integrated into pipeline via av_ensure_wpml_cte_job().
- fix-status / repair : align FR posts to correct trid + cleanup orphans.
- push-translations : push dict into icl_string_translations.
- plugins-check / debug / dump-strings / icl-dump / rescan : diagnostics.
## tools/av-fix-link-types.php
One-shot DB migration : convert legacy link.type='internal'+url to 'external'
across all _bricks_page_*_2 meta values (JSON and PHP-serialized). Bricks's
set_link_attributes() only renders href= for type='external' — older session-3
templates lost their href silently.
## Other tools/ mu-plugins
- av-bricks-rest-bridge : pivot — exposes Bricks CPTs over REST, dual-format
read filter (JSON for MCP / array for renderer), auto-mirror content→header/
footer for templates.
- av-apply-bricks-styles, av-cleanup-orphans, av-create-wp-menu, av-debug-meta,
av-dump-bricks, av-fix-template-meta : misc operational scripts.
## Bricks Config/
JSON snapshots of bricks_theme_styles, bricks_color_palette,
bricks_global_settings for diffable inspection.
## .gitignore
Add .mcp.json — holds per-developer WP App Password for the Bricks MCP server.
## wp-content/themes/asterion-bricks/assets/css/utilities.css
Note that all responsive overrides are now emitted natively by the page
generator via Bricks per-breakpoint settings, no custom CSS needed.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
100 lines
3.8 KiB
PHP
100 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* Plugin Name: Asterion — Create WP Menu (one-shot, idempotent)
|
|
* Description: /?av_create_menu=NAME → creates/updates a WP nav menu and returns its term_id.
|
|
*
|
|
* Predefined menus :
|
|
* /?av_create_menu=header-main → 5 items : Solutions / Industries / Technology / Why Asterion / Insights
|
|
* /?av_create_menu=footer-nav → Solutions / Industries / Technology pages
|
|
* /?av_create_menu=footer-co → About / Customers / Partners / Insights
|
|
* /?av_create_menu=footer-legal → Privacy / Terms / Cookies / Imprint
|
|
*/
|
|
defined('ABSPATH') || exit;
|
|
|
|
add_action('init', function () {
|
|
if (empty($_GET['av_create_menu'])) return;
|
|
if (! in_array($_SERVER['SERVER_NAME'] ?? '', ['localhost', '127.0.0.1'], true)) wp_die('localhost only');
|
|
|
|
require_once ABSPATH . 'wp-admin/includes/nav-menu.php';
|
|
|
|
$name = sanitize_text_field($_GET['av_create_menu']);
|
|
|
|
$blueprints = [
|
|
'header-main' => [
|
|
'label' => 'Header — Main',
|
|
'items' => [
|
|
['title' => 'Solutions', 'url' => '/solutions/'],
|
|
['title' => 'Industries', 'url' => '/industries/'],
|
|
['title' => 'Technology', 'url' => '/technology/'],
|
|
['title' => 'Why Asterion', 'url' => '/why-asterion/'],
|
|
['title' => 'Insights', 'url' => '/insights/'],
|
|
],
|
|
],
|
|
'footer-nav' => [
|
|
'label' => 'Footer — Solutions',
|
|
'items' => [
|
|
['title' => 'Solutions', 'url' => '/solutions/'],
|
|
['title' => 'Industries', 'url' => '/industries/'],
|
|
['title' => 'Technology', 'url' => '/technology/'],
|
|
],
|
|
],
|
|
'footer-co' => [
|
|
'label' => 'Footer — Company',
|
|
'items' => [
|
|
['title' => 'About', 'url' => '/about/'],
|
|
['title' => 'Customers', 'url' => '/customers/'],
|
|
['title' => 'Partners', 'url' => '/partners/'],
|
|
['title' => 'Insights', 'url' => '/insights/'],
|
|
],
|
|
],
|
|
'footer-legal' => [
|
|
'label' => 'Footer — Legal',
|
|
'items' => [
|
|
['title' => 'Privacy', 'url' => '/privacy/'],
|
|
['title' => 'Terms', 'url' => '/terms/'],
|
|
['title' => 'Cookies', 'url' => '/cookies/'],
|
|
['title' => 'Imprint', 'url' => '/imprint/'],
|
|
],
|
|
],
|
|
];
|
|
|
|
if (! isset($blueprints[$name])) {
|
|
wp_die('unknown menu blueprint : ' . esc_html($name) . '. Available : ' . implode(', ', array_keys($blueprints)));
|
|
}
|
|
|
|
$bp = $blueprints[$name];
|
|
$label = $bp['label'];
|
|
|
|
// Idempotent : reuse existing menu if name matches
|
|
$menu = wp_get_nav_menu_object($label);
|
|
if (! $menu) {
|
|
$menu_id = wp_create_nav_menu($label);
|
|
if (is_wp_error($menu_id)) wp_die('create error : ' . $menu_id->get_error_message());
|
|
$menu = wp_get_nav_menu_object($menu_id);
|
|
} else {
|
|
// Wipe existing items to repush fresh
|
|
$existing = wp_get_nav_menu_items($menu->term_id);
|
|
foreach ($existing as $item) {
|
|
wp_delete_post($item->ID, true);
|
|
}
|
|
}
|
|
|
|
$report = ["Menu \"$label\" (term_id={$menu->term_id})"];
|
|
|
|
foreach ($bp['items'] as $i => $item) {
|
|
$item_id = wp_update_nav_menu_item($menu->term_id, 0, [
|
|
'menu-item-title' => $item['title'],
|
|
'menu-item-url' => $item['url'],
|
|
'menu-item-status' => 'publish',
|
|
'menu-item-type' => 'custom',
|
|
'menu-item-position' => $i + 1,
|
|
]);
|
|
$report[] = " + {$item['title']} → {$item['url']} (item_id=$item_id)";
|
|
}
|
|
|
|
header('Content-Type: text/plain; charset=utf-8');
|
|
echo implode("\n", $report);
|
|
echo "\n\nUSE IN BRICKS : nav-menu element with menu = {$menu->term_id}";
|
|
exit;
|
|
});
|