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ü
Alle
Alle
2025
2024
2023
2022
2018–2020
2015
Alle
2025
2024
2023
2022
2018–2020
2015
05.07. – 30.07.2023
Planetenklang
Carinthia / Austria
14.08. – 25.09.2022
Circle of Peace
Christkönig Kirche – Krumpendorf
Carinthia / Austria
07.04.-14.04.2020
Corona Helmet
Venice, Veneto
25.09.-30.10.2024
Star Rocker
Vienna, Austria
25-28.04.2024
GrandHotelWien
Vienna / A
23.05. – 04.08.2025
Planetenklang
Toblach / Südtirol
2013-2015
Hermes Wings
Vienna, 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, ]); }