正确定义常量?

时间:2015-07-27 22:00:02

标签: php wordpress

我在其他地方问了这个问题,并且用以下代码告诉我,我正在使用我的定义不正确?所以目前没有任何回报 -

我已尝试在functions.php -

中设置常量
define( 'THEME_DIR', get_template_directory() . '/' );
define( 'THEME_URI', get_template_directory_uri() . '/' );

然后在我的配置文件中 -

$sample_patterns_path = 'THEME_DIR' . '../sample/patterns/';
$sample_patterns_url = 'THEME_URI' . '../sample/patterns/';

1 个答案:

答案 0 :(得分:1)

使用此代码,不带斜杠:

$sample_patterns_path = THEME_DIR . 'sample/patterns/';
$sample_patterns_url = THEME_URI . 'sample/patterns/';