query_post per titolo?


18

è possibile creare un ciclo di post usando WP_Query o query_posts usando il titolo?

vale a dire

$args = array('post_title'='LIKE '.$str.'% ');

$res = WP_Query($arg);

// the loop...


// trying this now...
$mypostids = $wpdb->get_col("select ID from $wpdb->posts where post_title like 'Abb%' ");

echo count($mypostids).", ";    // works but can't echo out array of IDs for the next args?

$args = array(
    'post__in'=> $mypostids
);

$res = WP_Query($args);

while( $res->have_posts() ) : $res->the_post(); ...

Risposte:


31

functions.php

<?php
add_filter( 'posts_where', 'title_like_posts_where', 10, 2 );
function title_like_posts_where( $where, $wp_query ) {
    global $wpdb;
    if ( $post_title_like = $wp_query->get( 'post_title_like' ) ) {
        $where .= ' AND ' . $wpdb->posts . '.post_title LIKE \'%' . esc_sql( $wpdb->esc_like( $post_title_like ) ) . '%\'';
    }
    return $where;
}
?>

Poi:

$args = array(
    'post_title_like' => $str
);
$res = new WP_Query($args);

Funziona alla grande, tranne per il secondo argomento (il riferimento $wp_query), che non sembra far parte del callback del filtro (vedi codex.wordpress.org/Plugin_API/Filter_Reference/posts_where ) e genererà un errore.
Maryisdead,

1
in realtà, il codice è corretto com'è, almeno in WP 4.1.1. È il codice che omette il secondo argomento, quindi se si dichiarano 2 argomenti add_filtercome nell'esempio, funziona bene. Un altro vantaggio di questa soluzione è che funziona con tipi di post personalizzati.
yitwail

1
Questa dovrebbe essere una risposta accettata poiché mostra come farlo usando le funzioni integrate di WordPress e non usando la query SQL personalizzata.
Sudar,

1
sembra, che prima %manca qui. Subito dopo LIKE \'. L'ho aggiunto e ha iniziato a funzionare (4.2.4)
vladkras il

Sì, manca il primo %, aggiunto anche e funziona :) (forse dovrebbe modificare la risposta?)
Toni Michel Caubet,

3

ha funzionato con l'aiuto di questo post alla fine. Saluti ragazzi;

$finalArgs =  array (       
        'posts_per_page'=>5,
        'order' => 'ASC',
        'post_type' => 'school'                         
    );

    // Create a new instance
    $searchSchools = new WP_Query( $finalArgs );

    $mypostids = $wpdb->get_col("select ID from $wpdb->posts where post_title LIKE '".$str."%' ");

    $args = array(
        'post__in'=> $mypostids,
        'post_type'=>'school',
        'orderby'=>'title',
        'order'=>'asc'
    );

    $res = new WP_Query($args);

    while( $res->have_posts() ) : $res->the_post();

        global $post;

        $EstablishmentNumber = get_post_meta($post->ID,'EstablishmentNumber', true);

        $schl = array('id'=>$EstablishmentNumber, 'label'=>$post->post_title , 'value'=>$EstablishmentNumber );     
        $matchedSchools[] = $schl;


    endwhile;

3

Ottieni il titolo da un altro loop

$title = get_the_title();

e se lo desideri usa la variabile $ title.

<?php

global $post, $current_post_id, $title;

function filter_where($where = ''){

    global $title;
    $where .= "AND post_title = '$title'";
    return $where;

}
add_filter('posts_where', 'filter_where');

$query = new WP_Query(array('post_type' => 'sessions') );
if ( have_posts() ) : while ( $query->have_posts() ) : $query->the_post();

    /* Loop here */

endwhile; endif; 

wp_reset_query(); ?>

funziona su tipo di post personalizzato e wordpress 3.2.1
Zakir Sajib il

0

Sì, è possibile....

global $wpdb;

$mypostids = $wpdb->get_col("select ID from $wpdb->posts where post_title like '%$str%' ");

$args = array('post__in'=$mypostids);

$res = WP_Query($arg);

evviva Rajeev - ci ha provato ma rimane bloccato dopo get_col. Ho aggiornato quanto sopra ^^^
v3nt

0

Queste risposte mi sembrano cercare di hackerare wordpress.

Fare riferimento alla stessa domanda sull'overflow dello stack:

/programming/25761593/wp-query-with-post-title-like-something-and-category

Funziona se vuoi fare una ricerca per titolo ordinato per titolo:

$the_query = new WP_Query( 
  array(
    'post_type' => 'watches',
    'posts_per_page' => 5,
    'orderby' => 'title',
    's' => 'my title'
  ) 
);

Questa query di esempio è per un tipo di post chiamato watch e la 's' (termine di ricerca) è dove puoi cercare i titoli dei tuoi post sulla query


1
Questo cercherà anche il contenuto
Mark Kaplun il
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.