Tag: template
Come settare un gravatar di default in Wordpress 2.7
by nikynik on feb.23, 2009, under Tutorials
Con l’avvento di Wordpress 2.7 molte funzioni sono cambiate. Tra le tante c’è da notare come sia cambiato il loop dei commenti che oggi si richiama facilmente solamente con l’inserimento della funzione < ?php wp_list_comments(); ?>.
L’abilità di impostare un gravatar personalizzato nella nuova versione viene richiamata all’interno del file function.php del template che dovrà contenere il seguente codice:
< ?php
add_filter( 'avatar_defaults', 'YOURTHEMENAME_addgravatar' );
function YOURTHEMENAME_addgravatar( $avatar_defaults ) {
$myavatar = get_bloginfo('template_directory') . '/images/gravatar.png';
$avatar_defaults[$myavatar] = ‘GRAVATAR NAME DISPLAYED IN WORDPRESS’;
return $avatar_defaults;
}
?>
Basta semplicemente sostituire NOMEDELTUOTEMA con quello del template ed inserire nel file comments.php il seguente codice per definire la dimensione del gravatar
< ?php wp_list_comments(array('avatar_size'=>70, )); ?> ed il gioco è fatto.
Articolo originale di Kremalicious
Esempio di call-back di J.Clark
Wiki su wordpress.org
Popularity: 7%
ABAC reloaded!
by nikynik on gen.07, 2008, under Templates
17 Comments :2008, abac, template, Templates, wordpress more...Seven bugs.
by nikynik on ago.06, 2007, under Templates
after some comments i have correct some errors in my template seven and now it’s ok. I have added some little modification at the css for supportin other plugin. Please if you have downloaded seven before this post, redownload it. Thanks
Popularity: 98%
Download Seven.
by nikynik on ago.02, 2007, under Templates
Seven is ready for the download. You can find some aspects of my template at the Seven page in the menu where you can find the plugins supported and the relative typography. Seven can be localized.
Popularity: 100%
Seven, Il nuovo template.
by nikynik on lug.31, 2007, under Templates

Finally i have completed my new template for wordpress. I hope you like and very soon i go to publish it, if you find some bug please comment. Thanks.
Popularity: 89%

