如何在子域博客中显示主域上的最新帖子

时间:2013-10-13 14:06:34

标签: php wordpress wpmu

我有2个单独的WordPress安装,一个在主站点上,另一个在子域上。是否有可能在主站点上显示来自子域的帖子以及主站点的文章。就像显示的每个替代文章一样,无论发布日期如何,都来自子域。

我读过这篇文章,却无法实现我的目标: How to show recent post in the main domain from subdomain blog

以下是我正在使用的主题的functions.php,index.php和single.php文件:

  1. Functions.php http://pastebin.com/s3tfdnB2
  2. Index.php http://pastebin.com/nxtMZzLq
  3. Single.php http://pastebin.com/sgpfvtVe
  4. 任何帮助都将受到高度赞赏。感谢。

1 个答案:

答案 0 :(得分:0)

如何访问主域中子域的数据库并查询最近的帖子。

$mydb = new wpdb('username','password','database','localhost');
$rows = $mydb->get_results("select recent posts");
echo "<ul>";
   foreach ($rows as $obj) :
      //display data here
   endforeach;
echo "</ul>";

see more

注意:如果您为子域启用了Wordpress网络,这不是一个完美的解决方案。