我在同一个数据库上安装了2个不同的网站。这两个网站共享用户表,但我希望他们也共享帖子表。我尝试使用我从一些旧帖子中找到的方法编辑wp-db.php来做到这一点。在这段代码之后:
foreach ( $this->tables( 'global' ) as $table => $prefixed_table )
$this->$table = $prefixed_table;
我添加了这段代码:
$this->posts = 'wp_' . 'posts';
$this->postmeta = 'wp' . 'postmeta';
但它似乎不起作用。
我需要让两个网站使用相同的帖子和postmeta表而不是每个使用它自己的帖子和postmeta表的网站。如何让2个网站使用相同的帖子和帖子表?
谢谢!