使用is_page()
. 这个is_page()
函数接受页面标题、slug或id。Documentation
<?php
if(is_page(\'myscript\')) {
include \'/path/to/myscript.php\';
}
?>
UPDATE
要将其添加到内容中,您有两个选项
1. Find the content function in your template
查找其中一个
the_content()
或
get_the_content()
在模板中。将其立即放置在该函数之后(如果需要,请放置在之前)。
2. Add A Filter
将上述代码移动到主题的
functions.php
文件并将其包装到函数中。然后将过滤器添加到
the_content()
使其包含您的新功能。您的代码应该如下所示:
function my_the_content_filter(){
if(is_page(\'myscript\')) {
include \'/path/to/myscript.php\';
}
}
add_filter( \'the_content\', \'my_the_content_filter\' );