您可以使用Walker:在函数中扩展Walker\\u Nav\\u菜单类。php
class custom_nav extends Walker_Nav_Menu {
function start_el (&$output, $item, $depth, $args) {
$item_output = \'<a href="\' . $item->url. \'" someattr="somevalue">\' . $item->title . \'</a>\';
$output .= \'<li>\' . apply_filters (\'walker_nav_menu_start_el\', $item_output, $item, $depth, $args);
}
}
把它叫来
wp_list_pages
<?php wp_list_pages(array( \'walker\' => new custom_nav ())); ?>