定义WP_CONTENT_DIR时,GET_TEMPLATE_DIRECTORY_URI似乎不起作用

时间:2014-05-16 作者:John Hamman

我已在配置中定义:

define( \'WP_CONTENT_DIR\', dirname(__FILE__) . \'/somedirectory\' );
之后Codex: Editing WP Config

但是<?php echo get_template_directory_uri(); ?> 打印输出:

http://dev.domain.com/wp-content/themes/mytheme
即使它应该打印出来

http://dev.domain.com/somedirectory/themes/mytheme
是否有其他人经历过这种情况或知道修复方法?

1 个回复
SO网友:Neil Berry

这是我在wp config中设置内容目录的方式。php

// ========================
// Custom Content Directory
// ========================
define( \'WP_CONTENT_DIR\', dirname( __FILE__ ) . \'/somedir\' );
define( \'WP_CONTENT_URL\', \'http://\' . $_SERVER[\'HTTP_HOST\'] . \'/somedir\' );

结束