我目前将以下PHP代码用于自定义页面模板,该模板会自动将页面重定向到其第一个子页面:
<?php
/*
Template Name: Go to first child
*/
$pagekids = get_pages("child_of=".$post->ID."&sort_column=menu_order");
if ($pagekids) {
$firstchild = $pagekids[0];
wp_redirect(get_permalink($firstchild->ID));
} else {
// Do whatever templating you want as a fall-back.
}
?>
如何让该页面也采用第一个子页面的特色图片?