サムネイルを表示するように出力を変更するためにwp_list_pagesで使用するカスタムウォーカーを作成しました。目標は、ページテンプレートにリストを表示することです。ページテンプレートには、すべての子供とその子供が一覧表示されます。
私が以下に持っているウォーカーはサムネイルとページタイトルを得るために働くようですが、ページのURLを得ません。 esc_attr
だけでなくget
接頭辞付き関数を使用する必要があるでしょうか。
class bio_walker extends Walker_Nav_Menu
{
function start_el(&$output, $item, $depth, $args)
{
$output .= "<li id='menu-item-$item->ID' class='bio-list'>";
$attributes = "class='highlight-$item->ID'";
! empty( $item->attr_title )
and $attributes .= ' title="' . esc_attr( $item->attr_title ) .'"';
! empty( $item->target )
and $attributes .= ' target="' . esc_attr( $item->target ) .'"';
! empty( $item->xfn )
and $attributes .= ' rel="' . esc_attr( $item->xfn ) .'"';
! empty( $item->url )
and $attributes .= ' href="' . esc_attr( $item->url ) .'"';
$pageid = get_post_meta ( $item->ID, '_menu_item_object_id', true);
$thumbnail = get_the_post_thumbnail( $item->ID, 'bio-thumb', true);
$title = get_the_title($item->ID);
$spanclass = "class='span-$item->ID bio-list-span'";
$item_output = $args->before
. "<a $attributes>"
. $thumbnail
. "<span $spanclass>"
. $title
. $pageid
. "</span>"
. '</a> ';
$output .= apply_filters(
'walker_nav_menu_start_el'
, $item_output
, $item
, $depth
, $args
);
}
}
他の誰かが同様の質問でこれにつまずいた場合 - それを考え出した:
拡張するのに適切なwalkerは、Walker_Nav_Menuではなく、Walker_Pageです。
Walker_pageは/wp-includes/post-template.phpにあります(978行目)。