我目前有一个简单的wp_query
在我的wordpress网站上搜索工作。我现在希望相同的搜索在它自己的数据库中查找结果,并在同一服务器上查找另一个结果。
我发现我可以new wpdb()
然后$mydb->get_results()
来获取帖子。我设法获得了其中一篇文章的标题,但现在我想把它整合到我的wp_query
. 这可能吗?下面是代码的细分:
$args = array(
\'post_type\' => \'post\',
\'show_posts\' => \'10\',
\'paged\' => $paged
);
$the_query = new WP_Query($args);
// Testing the new wpdb instance (RESULT: title echoed out. Working)
$mydb = new wpdb(\'USR\',\'PSWD\',\'DB\',\'localhost\');
$rows = $mydb->get_results(" SELECT * FROM wp_posts WHERE id = \'5509\' ");
foreach ($rows as $obj) :
echo $obj->post_title;
endforeach;
// So now, how do I use my wp_query to get these results too?
// Loop
if ($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post();