我正在使用 wordpress 插件来输出取决于国家/地区代码的 php 包含,我已经设置了根据位置输出文本的条件短代码,但无法将其提升到下一个级别以包含 php 文件:
<? echo do_shortcode('[wpgc_is_country_code country_code="UK"]' . 'hello' .'[/wpgc_is_country_code]');?>
这输出“你好”,但我希望它包含一个 php 文件。我试过这个:
<? echo do_shortcode('[wpgc_is_country_code country_code="UK"]' . 'include('include/UK.php')' .'[/wpgc_is_country_code]');?>
但它不起作用,输出是空白的,我在“包含”部分的东西哪里出错了?(我也尝试过使用“get_template_part”函数但没有成功)
提前致谢!