Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 wordpress 中使用了作业管理器插件。我的客户希望管理部分中的搜索功能来搜索工作。无论添加什么工作,我们都保存在 wp_posts 表中。
下面是代码
$jobs = get_posts('post_type=jobman_job&numberposts=-1&post_status=publish,draft,future' );
在上面的代码中我想添加$post_title = $_POST['searchtext']。
$post_title = $_POST['searchtext']
那么如何添加现有代码?
看看这个: http ://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters