Sorry, but i’m just beginning to customize wordpress themes. how can i edit
<?php
foreach((get_the_category()) as $category) {
if (!in_array($category->cat_name,array('cat1_to_exclude','cat2_to_exclude','cat3_to_exclude')) ) {
echo '<a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> ';
}
}
?>
to exlude the categories that i do not want to appear? Thank you in advance!