Hello,
it’s generated with ACF PRO.
Here is JSON: https://share.kubiq.sk/acf-export-2025-05-07.json
or here is PHP version:
add_action( 'init', function() {
register_taxonomy( 'technology', array(
0 => 'technology',
1 => 'product',
), array(
'labels' => array(
'name' => 'Technologies',
'singular_name' => 'Technology',
'menu_name' => 'Technologies',
'all_items' => 'All Technologies',
'edit_item' => 'Edit Technology',
'view_item' => 'View Technology',
'update_item' => 'Update Technology',
'add_new_item' => 'Add New Technology',
'new_item_name' => 'New Technology Name',
'parent_item' => 'Parent Technology',
'parent_item_colon' => 'Parent Technology:',
'search_items' => 'Search Technologies',
'not_found' => 'No technologies found',
'no_terms' => 'No technologies',
'filter_by_item' => 'Filter by technology',
'items_list_navigation' => 'Technologies list navigation',
'items_list' => 'Technologies list',
'back_to_items' => '← Go to technologies',
'item_link' => 'Technology Link',
'item_link_description' => 'A link to a technology',
),
'public' => false,
'hierarchical' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'show_in_nav_menus' => true,
'show_in_rest' => true,
'show_tagcloud' => false,
'show_admin_column' => true,
'rewrite' => array(
'with_front' => false,
),
'default_term' => array(
'name' => 'Wireless',
),
'sort' => true,
) );
} );
add_action( 'init', function() {
register_post_type( 'technology', array(
'labels' => array(
'name' => 'Technologies',
'singular_name' => 'Technology',
'menu_name' => 'Technologies',
'all_items' => 'All Technologies',
'edit_item' => 'Edit Technology',
'view_item' => 'View Technology',
'view_items' => 'View Technologies',
'add_new_item' => 'Add New Technology',
'add_new' => 'Add New Technology',
'new_item' => 'New Technology',
'parent_item_colon' => 'Parent Technology:',
'search_items' => 'Search Technologies',
'not_found' => 'No technologies found',
'not_found_in_trash' => 'No technologies found in Trash',
'archives' => 'Technology Archives',
'attributes' => 'Technology Attributes',
'insert_into_item' => 'Insert into technology',
'uploaded_to_this_item' => 'Uploaded to this technology',
'filter_items_list' => 'Filter technologies list',
'filter_by_date' => 'Filter technologies by date',
'items_list_navigation' => 'Technologies list navigation',
'items_list' => 'Technologies list',
'item_published' => 'Technology published.',
'item_published_privately' => 'Technology published privately.',
'item_reverted_to_draft' => 'Technology reverted to draft.',
'item_scheduled' => 'Technology scheduled.',
'item_updated' => 'Technology updated.',
'item_link' => 'Technology Link',
'item_link_description' => 'A link to a technology.',
),
'public' => true,
'show_in_rest' => true,
'menu_icon' => 'dashicons-admin-tools',
'supports' => array(
0 => 'title',
1 => 'editor',
2 => 'excerpt',
3 => 'revisions',
4 => 'thumbnail',
),
'has_archive' => true,
'rewrite' => array(
'feeds' => false,
'pages' => false,
),
'delete_with_user' => false,
) );
} );
Yes, there are many other plugins, but I can not deactivate them and currently I have no time to copy this website to staging and test this, but maybe in the weekend…