Non visualizzare categoria e tag

Ciao, per effettuare le modifiche apri il file functions.php ed elimina questo codice che trovi più o meno alla riga 186:
Codice:
// Meta category & tagged
if ( ! function_exists( 'wpstyle_posted_in' ) ) :
function wpstyle_posted_in() {
	$tag_list = get_the_tag_list( ' → ', ', ' );
	if ( $tag_list ) {
		$posted_in = __( 'This entry was posted in &rarr; %1$s <br />Tagged %2$s.<br />', 'wpstyle' );
	} elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) {
		$posted_in = __( 'This entry was posted in &rarr; %1$s<br />', 'wpstyle' );
	}
	printf(
		$posted_in,
		get_the_category_list( ', ' ),
		$tag_list,
		get_permalink(),
		the_title_attribute( 'echo=0' )
);
}
endif;

poi apri il file single.php più o meno riga 15 ed elimina la stringa:
Codice:
<?php wpstyle_posted_in(); ?>

volendo puoi eliminare anche solo quest'ultima stringa e lasciare intatto il file functions.php...(anzi forse è meglio)
nel caso decidessi di riaggiungerli in un secondo momento.
 
ciao
posso dare un consiglio?
più che eliminare non sarebbe meglio commentare la/le riga/he?
è più facile ricordarsi poi cosa si è fatto
 

Discussioni simili