タイトルによるquery_post?


18

タイトルを使用してWP_Queryまたはquery_postsを使用して投稿のループを作成することは可能ですか?

すなわち

$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(); ...

回答:


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;
}
?>

次に:

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

$wp_queryフィルターコールバック(codex.wordpress.org/Plugin_API/Filter_Reference/posts_whereを参照)の一部ではないようで、エラーを生成する2番目の引数(参照先)を除いて素晴らしい動作をします。
maryisdead

1
実際、少なくともWP 4.1.1ではコードはそのままです。2番目の引数を省略しているのはコーデックスなのでadd_filter、この例のように2つの引数を宣言すると、正常に機能します。このソリューションのもう1つの利点は、カスタムの投稿タイプで機能することです。
yitwail

1
これは、WordPressの組み込み関数を使用してカスタムSQLクエリを使用せずに実行する方法を示しているため、受け入れられる回答である必要があります。
スダー

1
%ここでは最初に見逃しているようです。直後LIKE \'。追加し、動作を開始しました(4.2.4)
vladkras

はい、最初の行方不明も%、追加し、動作します:)(おそらく答えを編集する必要がありますか?)
トニミッシェルCaube

3

最後にこの投稿の助けを借りてこれを機能させました。乾杯!

$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

別のループからタイトルを取得する

$title = get_the_title();

必要に応じて$ 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(); ?>

カスタム投稿タイプとワードプレス3.2.1で動作します
ザキールサジブ

0

はい、可能です。

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);

歓声Rajeev-これを試してみましたが、get_colの後にスタックします。上記を更新しました^^^
v3nt

0

これらの返信は、ワードプレスをハッキングしようとしているように思えます。

スタックオーバーフローに関する同じ質問を参照してください。

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

これは、タイトル順のタイトルで検索クエリを実行する場合に機能します。

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

このクエリ例は、watchsという名前の投稿タイプ用であり、「s」(検索語)は、クエリで投稿タイトルを検索できる場所です。


1
これにより、コンテンツも検索されます
Mark Kaplun
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.