我正在为某人构建一个wordpress主题,基于较旧的修改过的主题,它正在使用一些基于Flash的“持有者”的AJAX脚本来表示广告领域。我正在尝试使用自定义名称phps向其添加图像小部件。
所以基本上,我正在尝试使用<?php get_ad('variantnamehere'); ?>
并从我的主题文件中获取ad-customname.php。
我假设我必须在functions.php中注册这些文件,但我不知道该怎么做。
有没有办法做到这一点?
答案 0 :(得分:0)
在主题的functions.php中添加以下内容:
require_once( dirname(__FILE__) . '/ad-customname.php' );
答案 1 :(得分:0)
感谢Artur的反馈,感谢文章here,我找到了我想要的东西。
include ( dirname(__FILE__) . '/customfilename.php' );
<?php get_template_part('customfilename');?>