wp_list_pages
允许您包含walker函数。这会让你完全自由地添加任何你想要的类,但这不是初学者的方法。你可以从reading this.
如果您想对类进行简单的搜索和替换,如您的问题所示,您可以使用wp_list_pages
filter 像这样:
add_filter (\'wp_list_pages\',\'wpse241119_replace_class\',10,3);
function wpse241119_replace_class ($output, $r, $pages) {
$output = str_replace (\'page-item number\', \'hvr-underline\', $output);
return $output;
}