我在 Wordpress 中提供不同的标题,具体取决于您在网站中的哪个部分,“住宅”,“商业”或其他使用以下代码:
<?php
/*
Template Name: Package
*/
if (is_page('business') || $post->post_parent == "17")
{
get_header('business');
}
else if (is_page('residential') || $post->post_parent == "19")
{
get_header('residential');
}
else
{
get_header();
}
?>
尽管我也需要将其扩展到与孙辈一起工作,但又要降低一个层次。有人有想法吗?