da weiß ich ja trotzdem nicht wo ich z.b. das reinschreiben soll
Zitat[COLOR=#0000BB][FONT=Consolas]<?php $terms [/FONT][/COLOR][COLOR=#007700][FONT=Consolas]= [/FONT][/COLOR][COLOR=#0000BB][FONT=Consolas]wp_get_post_terms[/FONT][/COLOR][COLOR=#007700][FONT=Consolas]( [/FONT][/COLOR][COLOR=#0000BB][FONT=Consolas]$post_id[/FONT][/COLOR][COLOR=#007700][FONT=Consolas], [/FONT][/COLOR][COLOR=#0000BB][FONT=Consolas]$taxonomy[/FONT][/COLOR][COLOR=#007700][FONT=Consolas], [/FONT][/COLOR][COLOR=#0000BB][FONT=Consolas]$args [/FONT][/COLOR][COLOR=#007700][FONT=Consolas]); [/FONT][/COLOR][COLOR=#0000BB][FONT=Consolas]?>[/FONT][/COLOR]
[COLOR=#0000BB][FONT=Consolas]
oder das hier
[/FONT][/COLOR]
Zitatfunction suppress_if_blurb( $title, $id = null ) {
if ( in_category(' blurb', $id ) ) {
return '';
}return $title;
}
add_filter( 'the_title', 'suppress_if_blurb', 10, 2 );
[COLOR=#0000BB][FONT=Consolas]
[/FONT][/COLOR]