Home
Artworks
Sculptures
Lotus
Paintings
Performances
One Stroke Performance
Exhibitions
About
Contact
Click to open the search input field
Click to open the search input field
Suche
Menü
Menü
2022
Alle
2025
2024
2023
2022
2018–2020
2015
Alle
2025
2024
2023
2022
2018–2020
2015
14.08. – 25.09.2022
Circle of Peace
Christkönig Kirche – Krumpendorf
Carinthia / Austria
Nach oben scrollen
Nach oben scrollen
Nach oben scrollen
// ============================================ // Custom Post Type: artwork (einzelne Projekte) // ============================================ add_action('init', 'semmelrock_register_artwork_cpt'); function semmelrock_register_artwork_cpt() { register_post_type('artwork', [ 'label' => 'Artworks', 'public' => true, 'show_ui' => true, 'has_archive' => false, 'rewrite' => ['slug' => 'artwork', 'with_front' => false], 'supports' => ['title', 'editor', 'thumbnail', 'excerpt'], 'menu_icon' => 'dashicons-format-gallery', 'show_in_rest' => true, ]); } // ============================================ // Taxonomie: artwork_category (2-stufig hierarchisch) // ============================================ add_action('init', 'semmelrock_register_artwork_taxonomy'); function semmelrock_register_artwork_taxonomy() { register_taxonomy('artwork_category', 'artwork', [ 'label' => 'Artwork Categories', 'public' => true, 'hierarchical' => true, 'show_ui' => true, 'show_admin_column' => true, 'rewrite' => [ 'slug' => 'artworks', 'with_front' => false, 'hierarchical' => true, ], 'show_in_rest' => true, ]); }