0

我在 wordpress 中使用了作业管理器插件。我的客户希望管理部分中的搜索功能来搜索工作。无论添加什么工作,我们都保存在 wp_posts 表中。

下面是代码

  $jobs = get_posts('post_type=jobman_job&numberposts=-1&post_status=publish,draft,future' );

在上面的代码中我想添加$post_title = $_POST['searchtext']

那么如何添加现有代码?

4

1 回答 1

0

看看这个: http ://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters

于 2012-04-04T10:14:16.487 回答