Impaginazione con query SQL personalizzata


9

Ho la mia stringa SQL per selezionare i post Tipo di post personalizzato con la specifica clausola WHERE. Ho usato l'offset e il limite per restituire post appropriati a seconda della pagina visualizzata. Funziona benissimo.

Ora, vorrei far funzionare previous_posts_link()e le next_posts_link()funzioni. Entrambi sono chiamati da get_posts_nav_linkquali usi global $wp_query.

C'è un modo che posso riassegnare global $wp_querycon la mia stringa SQL o i $wpdb->get_resultsrisultati o qualcos'altro? Quindi le funzioni native previous_posts_link()e next_posts_link()WP funzionerebbero.

In caso contrario, come posso riprodurre le funzioni di collegamento precedente e successivo?

Gradirei davvero qualsiasi aiuto e consiglio! Sono totalmente bloccato con questo.
Grazie :)

NOTA: ho appena notato che previous_posts_link()funziona correttamente su tutte le pagine, ma no idea whye in questo caso, perché next_posts_linknon funziona: S

Ecco il codice:

$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$post_per_page = intval(get_query_var('posts_per_page'));
$offset = ($paged - 1)*$post_per_page;

$sql = "
SELECT SQL_CALC_FOUND_ROWS  wp_posts.*, wp_postmeta.* 
FROM wp_posts 
INNER JOIN wp_postmeta ON (wp_posts.ID = wp_postmeta.post_id)
INNER JOIN wp_postmeta AS mt1 ON (wp_posts.ID = mt1.post_id) 
WHERE 1=1  
    AND wp_posts.post_type = 'movie' 
    AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'private') 
    AND ((wp_postmeta.meta_key = '_expiry_date' AND CAST(wp_postmeta.meta_value AS DATE) >= '".$current_date."') 
        OR (mt1.meta_key = '_expiry_date' AND CAST(mt1.meta_value AS CHAR) = ''))
GROUP BY wp_posts.ID 
ORDER BY wp_posts.post_date DESC
LIMIT ".$offset.", ".$post_per_page;

$movies_all_current = $wpdb->get_results( $sql, OBJECT);

if($movies_all_current) {
global $post;

//loop
foreach( $movies_all_current as $key=>$post ) {
    setup_postdata($post);
    //display each post
    //...
} //end foreach ?>

    //navigation
<div class="navigation">
    <div class="previous panel"><?php previous_posts_link('&laquo; newer') ?></div>
    <div class="next panel"><?php next_posts_link('older &raquo;') ?></div>
</div>
}

Risposte:


16

Ok, ci sono arrivato alla fine. Non potevo usare la WP_Queryclasse perché avevo davvero bisogno di avere il mio SQL piuttosto grande e complesso. Ecco cosa ho finito per avere:

In functions.phpho il mio SQL personalizzato e la logica per il conteggio dei valori necessari per la logica di impaginazione del WP:

function vacancies_current( ){
    global $wpdb, $paged, $max_num_pages, $current_date;

    $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
    $post_per_page = intval(get_query_var('posts_per_page'));
    $offset = ($paged - 1)*$post_per_page;

    /* Custom sql here. I left out the important bits and deleted the body 
     as it will be specific when you have your own. */
    $sql = "
        SELECT SQL_CALC_FOUND_ROWS  {$wpdb->posts}.*
        FROM {$wpdb->posts}
        ....
        GROUP BY {$wpdb->posts}.ID 
        ORDER BY {$wpdb->posts}.post_date DESC
        LIMIT ".$offset.", ".$post_per_page."; ";   

    $sql_result = $wpdb->get_results( $sql, OBJECT);

    /* Determine the total of results found to calculate the max_num_pages
     for next_posts_link navigation */
    $sql_posts_total = $wpdb->get_var( "SELECT FOUND_ROWS();" );
    $max_num_pages = ceil($sql_posts_total / $post_per_page);

    return $sql_result;
}

Quindi nel mio file modello avrei:

<?php 
    $vacancies_current = vacancies_current();
    /*followed by a standart loop to display your results */ 
 ?>
<div class="navigation">
    <div class="previous panel"><?php previous_posts_link('&laquo; previous vacancies',$max_num_pages) ?></div>
    <div class="next panel"><?php next_posts_link('more vacancies &raquo;',$max_num_pages) ?></div>
</div>

Il trucco era nel fornire previous_posts_link()e next_posts_linknel $max_num_pagesvalore e ovviamente nel calcolarlo correttamente.

Funziona molto bene Spero che possa aiutare qualcuno :)

Dasha


+1 bel lavoro. Mi sono imbattuto in questo (e preso in prestito pesantemente, grazie) mentre cercavo la mia risposta a stackoverflow.com/questions/16057059/… . Mi chiedevo se conoscessi un modo per usare un'istruzione SQL personalizzata come questa, ma in un'azione pre_get_posts () come da codex.wordpress.org/… ? Trovo che questa soluzione sia suscettibile al numero 404 dell'ultima pagina, come da wordpress.org/support/topic/… . Come hai superato questo?
Sepster,

1

Dai un'occhiata alle query personalizzate , che ti consentono di modificare la chiamata wp_query in molti modi interessanti e utili e di inviare i risultati all'oggetto query globale.


1

Espandendo la risposta di Anu. Invece di fare affidamento sulla tua query sql personalizzata, puoi utilizzare la classe WP_Query e lasciare che WordPress gestisca tutto il pesante sollevamento SQL. Ciò risolverebbe sicuramente il tuo problema di navigazione.

Query di esempio per il tipo di post di filmato nella meta_key _expiry_date:

$today = getdate();
$args = array(
    'post_type' => 'movie',
    'meta_query' => array(
            'meta_key' => '_expiry_date',
            'meta_value' => $today,
            'meta_compare' => '< '
                    ),
    'posts_per_page' => -1,
     'order'    => 'DESC'
    );

    $movie_query = new WP_Query( $args );

    while ( $movie_query->have_posts() ) : $movie_query->the_post(); 
    // Do stuff
   endwhile; ?>

 <div class="navigation">
<div class="previous panel"><?php previous_posts_link('&laquo; newer') ?></div>
<div class="next panel"><?php next_posts_link('older &raquo;') ?></div>
</div>

grazie per la risposta, tuttavia, non posso fare affidamento sulla WP_Queryclasse in quanto ho bisogno di costruire il mio SQL personalizzato. Sono arrivato alla fine, vedi la mia risposta se interessati :)
dashaluna,

-2
<?php

global $wpdb, $paged;
query_posts($query_string . '&posts_per_page=9');
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$author = isset($_GET['author_name']) ? get_userdatabylogin($author_name) : get_userdata(intval($author));

query_posts($query_string . '&posts_per_page=9');

$args = array(
'post_type' => 'post',
'meta_query' => array(
        'meta_key' => 'autor',
    'post_status' => 'publish',
        'meta_value' => $author->id,
            ),
'paged' => $paged,
'posts_per_page' => 9,
'order'    => 'DESC'
);

$postsQuery = new WP_Query( $args );

?> 

Modello:

<h1lánky od <?php echo $author->display_name; ?></h1>
        <ul class="thumbnails">

            <?php while ( $postsQuery->have_posts() ) : $postsQuery->the_post();  ?>
                <li class="span3">
                <div class="thumbnail">
                    <a href="<?php the_permalink(); ?>">
                    <?php the_post_thumbnail(array(260, 259)); ?>
                    </a>
                    <?php
                    $class = '';
                    if (in_category('fashion')) {
                    $class = "link-fashion";
                    } else if (in_category('beauty')) {
                    $class = "link-beauty";
                    } else if (in_category('gourmet')) {
                    $class = "link-gourmet";
                    } else if (in_category('lifestyle')) {
                    $class = "link-lifestyle";
                    } else if (in_category('about-us')) {
                    $class = "link-about";
                    }
                    ?>
                    <a href="<?php the_permalink(); ?>">
                    <h2 class="<?=  $class ?>">
                        <span></span>
                        <?php
                        // short_title('...', 25); 
                        echo get_the_title();
                        ?>
                    </h2>
                    </a>
                    <?php the_excerpt(); ?>
                    <hr>
                </div>
                </li>
            <?php endwhile; ?>

        </ul>
        <?php wp_pagenavi(); ?>

2
Per favore, aggiungi una spiegazione al tuo codice, inoltre, perché stai eseguendo due query, una con query_postse una conWP_Query
Pieter Goosen
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.