Come posso inserire i numeri progressivi di pagina al posto di Older Entries?
Come posso inserire i numeri progressivi di pagina al posto di Older Entries?
http://wordpress.org/extend/plugins/wp-pagenavi/
PS: riduci la firma come da regolamento:OT: il banner verticale sulla destra copra buona parte della sidebar ed è decisamente antiestetico.Citazione:
La dimensione massima consentita per la firma in altezza è pari ad 80 pixel nella modalità di visualizzazione normale del forum: questa dimensione dovrebbe essere sufficiente ad ospitare un banner standard 468x60 con una riga di testo in dimensione normale descrittiva.
Hai usato le istruzioni qui riportate: http://lesterchan.net/wordpress/readme/wp-pagenavi.html ?
Riguardo alla firma, vedo che l'hai cambiata ma è alta 154px quando il regolamento dice max 80px.
l'index.php del tema in uso (cioè subito dopo questo codice):
PS: il riferimento riguarda il tema di default quindi il codice sarà leggermente diverso nel tuo caso.Codice PHP:<div class="navigation">
<div class="alignleft"><?php next_posts_link(__('« Older Entries', 'kubrick')) ?></div>
<div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'kubrick')) ?></div>
</div>
Nell' index del tema c'è sl questo...
Codice:<?php get_header(); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<!--Start Post-->
<div class="post" style="margin-bottom: 20px;">
<div class="p-head">
<p class="p-date"><?php the_time('d') ?> <?php the_time('M') ?>, <?php the_time('Y') ?></p>
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p class="p-who">Posted by: <?php the_author() ?> In: <?php the_category('|') ?></p>
</div>
<div class="p-con">
<?php the_content('Read the rest of this entry »'); ?>
</div>
<div class="p-com">
<?php comments_popup_link('Nessun Commento', '<strong>1</strong> Commento', '<strong>%</strong> Commenti'); ?>
</div>
<?php if (function_exists('the_tags')) { ?> <?php the_tags('<div class="p-tag">Tags: ', ', ', '</div>'); ?> <?php } ?>
</div>
<!--End Post-->
<?php endwhile; ?>
<?php include("nav.php"); ?>
<?php else : ?>
<?php include("404.php"); ?>
<?php endif; ?>
<!--Track Theme-->
<?php if (function_exists('trackTheme')) { ?>
<?php trackTheme("fervens-a"); ?>
<?php } ?>
<!--Track Theme-->
<?php get_footer(); ?>
Allora, probabilmente, è nel nav.phpCodice PHP:<?php include("nav.php"); ?>
Risolto grz ;)