bd咨询wordpress来显示the_excerpt();

时间:2015-05-12 05:01:54

标签: php wordpress

我有以下查询来提取bd wordpress

$sql = "SELECT * FROM wp_posts WHERE post_content LIKE '%".$keywords."%' AND post_status = 'publish' AND post_type = 'post'";

我将信息存储在数组中

$arr[] = array('id' => $obj->ID, 'title' => $obj->post_title);

但是我可以提取" the_excerpt();"或the_tags();有这样的查询吗?

我需要使用Ajax Live Search在屏幕上显示结果

1 个答案:

答案 0 :(得分:0)

对于wordpress中的ajax,这里是解决方案。

  

http://wptheming.com/2013/07/simple-ajax-example/

以及帖子,页面和其他自定义帖子类型中存储的任何数据都是解决方案。

  

https://codex.wordpress.org/Function_Reference/query_posts

如果您发现此信息有用,请进行投票。

感谢。