Visualizzazione risultati 1 fino 2 di 2

Discussione: Problema plugin

  1. #1
    Guest

    Predefinito Problema plugin

    Salve allora visto che nel tema Keith non c'è piu l'editor vorrei sapere come posso inserire la paginazione mediante il plugin wp page navi che mi dice di seguire queste procedure.
    In your theme, you need to find calls to next_posts_link() and previous_posts_link() and replace them.

    In the Twentyten theme, it looks like this:
    Codice PHP:
    <div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Older posts', 'twentyten' ) ); ?></div>
    <div class="nav-next"><?php previous_posts_link( __( 'Newer posts <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?></div>
    You would replace those two lines with this:
    Codice PHP:
    <?php wp_pagenavi(); ?>
    For multipart pages, you would look for code like this:
    Codice PHP:
    <?php wp_link_pages( ... ); ?>
    and replace it with this:
    Codice PHP:
    <?php wp_pagenavi( array( 'type' => 'multipart' ) ); ?>
    Go to WP-Admin -> Settings -> PageNavi for configuration.
    Ultima modifica di karl94 : 16-04-2015 alle ore 18.24.49 Motivo: Formattazione

  2. #2
    karl94 non è connesso Staff AV
    Data registrazione
    03-10-2005
    Messaggi
    17,745

    Predefinito

    Stiamo valutando se integrare il supporto a WP-PageNavi direttamente all'interno dei temi.

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •