我需要能够在侧边栏中显示链接的兄弟页面列表及其特色图像。我迷路了。我知道足够的PHP能够复制,粘贴和修改。这是我用来显示兄弟页面的代码。我无法弄清楚如何显示特色图像。我知道我需要从另一种方法来解决这个问题,我现在才确定从这里开始。
<?php
global $post;
$current_page_parent = ( $post->post_parent ? $post->post_parent : $post->ID );
wp_list_pages( array(
'title_li' => '',
'child_of' => $current_page_parent,
'depth' => '1' )
);
?>