- WordPress 6.9.4 (es_ES) with Kadence theme - Homepage: Hero, La Asociación, Pilares, Beneficios, Eventos, Miembros, Hazte Miembro, Contacto - Brand identity: #13294b navy, #a12932 burgundy, #c69c48 gold - Fonts: Raleway (headings) + Source Sans 3 (body) + Lato (UI) - Plugins: Kadence Blocks, Polylang, Contact Form 7 - Custom CSS with full brand styling and responsive layout - HTTPS enforced via wp-config.php proxy detection
17 lines
361 B
PHP
17 lines
361 B
PHP
<?php
|
|
/**
|
|
* Server-side rendering of the `core/page-list-item` block.
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
/**
|
|
* Registers the `core/page-list-item` block on server.
|
|
*
|
|
* @since 6.3.0
|
|
*/
|
|
function register_block_core_page_list_item() {
|
|
register_block_type_from_metadata( __DIR__ . '/page-list-item' );
|
|
}
|
|
add_action( 'init', 'register_block_core_page_list_item' );
|