Modificati lungimea EXCERPT-ului in thema Twentyten in WordPress
Deschideti functions.php si modificati pentru un excertpt mai lung:
function twentyten_excerpt_length( $length ) {
return 40;
}
in
function twentyten_excerpt_length( $length ) {
return 140;
}
(de exemplu)
Ascundeti link HOME in thema Twentyten in WordPress
Deschideti fisierul functions.php si modificati:
<?php
function twentyten_page_menu_args( $args ) {
$args['show_home'] = true;
return $args;
}
?>
in
<?php
function twentyten_page_menu_args( $args ) {
$args['show_home'] = false;
return $args;
}
?>