我有一个包含
include ('myfile.php');
现在,我正在使用wordpress并获取我使用的模板路径:
<?php echo get_template_directory_uri(); ?>
我的问题是:
我如何同时使用它们?
像:
<?php
include('<?php echo get_template_directory_uri(); ?>/myfile.php');
?>
由于
答案 0 :(得分:6)
include(get_template_directory_uri() . "/myfile.php");
include()
function只接受一个字符串参数。没什么特别的。
答案 1 :(得分:2)
您可以在include中使用函数的结果,但不能通过echo:ing来使用它。直接使用它。
<?php
include(get_template_directory_uri() . '/myfile.php');