0
wp_list_pagesでカスタムウォーカーを使用しています。子供がいる場合には$ linkと$ checkchildrenの値を変更したいと思います。wp_list_pages子供がいないか確認してください
私はそれが子供
$children = wp_list_pages(array(
'sort_column' => 'menu_order',
'title_li' => '',
'echo' => 1,
'walker' => new Sidebar_Custom_Walker()
));
class Sidebar_Custom_Walker extends Walker_Page {
function start_el(&$output, $page, $depth, $args, $current_page = 0) {
$output .= $indent . '<li class="rtChild">';
$linkcss ="c1"; // should be blank if no children
$output .= '<a href="' . get_permalink($page->ID) . '" class="'.$linkcss .'">' . $link_before;
$output .= apply_filters('the_title', $page->post_title, $page->ID);
$output .= $link_after . '</a>
$checkchildren = '<span class="plusBtn"></span>'; // should be blank if no children
$output .= $checkchildren;
}
}