initial import

This commit is contained in:
2025-10-30 15:04:17 +02:00
commit 637b8dc625
91 changed files with 13585 additions and 0 deletions

11
inc/acf.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
if( function_exists('acf_add_options_page') ) {
acf_add_options_page(array(
'page_title' => 'General Settings',
'menu_title' => 'General Settings',
'menu_slug' => 'site-settings',
'capability' => 'edit_posts',
'redirect' => false
));
}