您可以使用the_title
滤器只需记住在wp_list_pages()
否则,它将影响网站上的所有地方,如菜单、主标题、搜索结果等。
示例:-
add_filter(\'the_title\', \'my_custom_title\');
wp_list_pages();
remove_filter(\'the_title\', \'my_custom_title\');
function my_custom_title($current_title) {
if ($current_title == \'blue\') {
$current_title = $current_title . \' widget\';
}
return $current_title;
}