我制作了两个自定义页面模板文件:
第页佛罗里达。php
第页德克萨斯州。php等。
现在,我想在内容之后添加一些php,以便每个页面模板在内容之后获得自己的php添加脚本。
我正在考虑添加功能。php-但是我很难正确识别正确的页面模板,例如“page florida.php”。。。
function floridacontent($content) {
global $post;
if ($post->page_template == \'florida\') {
$content .= \'Forida added content\';
}
return $content;
}
add_filter(\'the_content\', \'floridacontent\');