我是一名Android开发人员。我在我的主机上制作了一个php文件,并且包含wp-blog-header.php
。我将此文件用作Web服务。
在我的应用程序中,有一个搜索部分,我得到term
作为字符串,category
作为用户ID,并将它们发送到我的php文件。
现在,我想搜索帖子标题并返回用户想要的标题和ID。
function customSearch($term,$category){
.
.
.
}
我使用prepare函数来获取下面的函数,但我找不到任何只能在帖子标题中搜索的函数。
function getLastItems()
{
$args = array(
'numberposts' => 5,
'offset' => 0,
'category' => 0,
'orderby' => 'post_date',
'order' => 'DESC',
'post_type' => 'post',
'post_status' => 'publish',
'suppress_filters' => true );
$recent_posts = wp_get_recent_posts( $args, ARRAY_A );
$mjson = array();
foreach( $recent_posts as $recent ){
$thumb = wp_get_attachment_image_src( get_post_thumbnail_id($recent['ID']), array(400,300) );
$url_img = $thumb['0'];
$marr = array(
'id'=>$recent["ID"],
'title'=>$recent["post_title"],
'img'=>$url_img
);
array_push($mjson,$marr);
}
return $mjson ;
}//end get last items
答案 0 :(得分:2)
我不理解你的搜索部分,但是你的问题是只搜索标题,这个答案会为你做。
- 在搜索之前,仅在标题中添加过滤器以进行搜索。
- 搜索后删除过滤器。
醇>
如果你想搜索标题,只需在下面添加到args。
function search_by_title( $search, $wp_query ) {
if ( ! empty( $search ) && ! empty( $wp_query->query_vars['search_terms'] ) ) {
global $wpdb;
$q = $wp_query->query_vars;
$n = ! empty( $q['exact'] ) ? '' : '%';
$search = array();
foreach ( ( array ) $q['search_terms'] as $term )
$search[] = $wpdb->prepare( "$wpdb->posts.post_title LIKE %s", $n . $wpdb->esc_like( $term ) . $n );
if ( ! is_user_logged_in() )
$search[] = "$wpdb->posts.post_password = ''";
$search = ' AND ' . implode( ' AND ', $search );
}
return $search;
}
$args = array(
's' => 'search string',
'numberposts' => 5,
'offset' => 0,
'category' => 0,
'orderby' => 'post_date',
'order' => 'DESC',
'post_type' => 'post',
'post_status' => 'publish',
'suppress_filters' => true);
add_filter( 'posts_search', 'search_by_title', 10, 2 );
$recent_posts = wp_get_recent_posts($args, ARRAY_A);
remove_filter( 'posts_search', 'search_by_title', 500 );
foreach($recent_posts as $posts) {
// your custom code here
}