3

我想知道如何重命名 wp-content 中的“主题”文件夹。我已经重命名了我的 wp-content 文件夹和实际的活动主题文件夹名称,但是我在重命名了存储主题的文件夹之后。

/wp-内容/主题/主题名

中间一个大声笑。

有谁知道这将如何实现?

4

2 回答 2

1

以下将启用站点根目录的目录“t”作为额外的主题目录

register_theme_directory( '/www/htdocs/username/public_html/t' );

我想你会喜欢这个帖子:隐藏网站正在使用 WordPress 的事实的步骤?

于 2012-12-03T04:50:02.370 回答
0

如果您想在 ex 中保留插件和上传,这很有用。用于 CDN 目的 (NFS) 的单独服务器并删除 public/www 权限。在这种情况下,您只部署主题而不是插件、上传等。

define('WP_CONTENT_DIR', __DIR__ . '/data/wp-content');
define('WP_CONTENT_URL', 'http://{your-url/to-blog}/wp-content');
define('WP_PLUGIN_DIR', __DIR__ . '/data/wp-content/plugins');
define('WP_PLUGIN_URL', 'http://{your-url/to-blog}/wp-content/plugins');

$wp_theme_directories = array(__DIR__ . '{/directory-to-themes}');
define('WP_DEFAULT_THEME', '{your-default-theme}');

请记住:1. wp-config 中的行顺序很重要 2. 将主题文件夹保留在 wp-content 中(即使它是空的)

于 2017-09-26T12:13:30.880 回答