是否没有办法将内容拉到本地主机站点,只是为了将内容放到站点上,以便我可以在客户端将内容添加到live DB的同时开发站点?
如果远程服务器支持,则可以连接到远程数据库。只是set your connection constants correctly:
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( \'DB_NAME\', \'database_name_here\' );
/** MySQL database username */
define( \'DB_USER\', \'username_here\' );
/** MySQL database password */
define( \'DB_PASSWORD\', \'password_here\' );
/** MySQL hostname */
define( \'DB_HOST\', \'localhost\' );
你几乎肯定也必须
set these on the local install:
define( \'WP_SITEURL\', \'http://example.com/wordpress\' );
define( \'WP_SITEURL\', \'http://example.com/wordpress\' );
我几乎可以保证您仍然会有问题,更不用说您对live server所做的更改了。
还有其他潜在的解决方案,如数据库镜像,但这在这里是不相干的,我从来没有这样做过。
我的建议是在项目开始时将实时数据库复制到本地服务器do not 尝试同步数据库或以其他方式将开发站点与活动站点连接。你在自找麻烦。WordPress在数据库中没有明确的内容/配置分隔。