按标题查询吗?


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

Answers:


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),并且会产生错误。
maryisdead 2013年

1
实际上,至少在WP 4.1.1中,该代码是正确的。是Codex省略了第二个参数,因此,如果add_filter像示例中那样声明2个参数,则可以正常工作。该解决方案的另一个优点是,它适用于自定义帖子类型。
yitwail 2015年

1
这应该是可以接受的答案,因为这显示了如何使用WordPress内置函数而不是使用自定义SQL查询来执行此操作。
Sudar

1
看来,%这里首先错过了。之后LIKE \'。我添加了它,它开始工作(4.2.4)
vladkras

是的,缺少第一个%,也添加了,并且可以使用:)(也许应该编辑答案?)
Toni Michel Caubet,2016年

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

它适用于自定义帖子类型和wordpress 3.2.1
Zakir Sajib

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 2011年

0

在我看来,这些答复似乎是在试图破解wordpress。

请参考有关堆栈溢出的相同问题:

/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
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.