当菜单项被打印回前端时,可以尝试只过滤您想要的菜单项。您可以在函数中执行此操作。php
在这里,您可以过滤导航菜单的HTML列表内容。https://developer.wordpress.org/reference/hooks/wp_nav_menu_items/
谈过之后,试试看,然后打电话给你的lo()
您需要的地方:
function lo() {
add_filter( \'wp_nav_menu_items\', \'dynamic_label_change\', 10, 2 );
function dynamic_label_change( $items,$args) {
if($args->theme_location == \'primary\'){
$items = str_replace("Categories", "new_string", $items);
$items = str_replace("Latest Offers", "another_new_string", $items);
}
return $items;
}
}