我是一名Android开发人员。我在我的主机上制作了一个php文件,并且包含wp-blog-header.php
。我在我的应用程序中将此文件用作Web服务。
在我的应用程序中,有一个搜索部分,我得到term
作为字符串,category
作为用户ID,并将它们发送到我的php文件。
现在,我想搜索帖子标题并返回用户想要的标题和ID。
function customSearch($term,$category){
.
. //To search by title and limit by 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