在 Woocommerce 中重命名我的帐户选项卡式菜单项

Rename My account tabbed menu items in Woocommerce

我目前使用的是 Wordpress 版本 4.9.8 并启用了 Woocommerce 插件。我需要在我的帐户页面中将选项卡名称 "Dashboard" 重命名为 "My Rewards"。

我找到了下面的代码,但它似乎不起作用:

function wpb_woo_endpoint_title( $title, $id ) {
   if ( is_wc_endpoint_url( 'dashboard' ) && in_the_loop() ) { // add your endpoint urls
     $title = "My Rewards"; // change your entry-title
     return $title;
}
add_filter( 'the_title', 'wpb_woo_endpoint_title', 10, 2 );

感谢任何帮助。

改为尝试以下操作 (自版本 2.6 起适用于 Woocommerce)

add_filter( 'woocommerce_account_menu_items', 'custom_my_account_menu_items', 22, 1 );
function custom_my_account_menu_items( $items ) {
    $items['dashboard'] = __("My Rewards", "woocommerce");
    return $items;
}

此代码位于您的活动子主题(或活动主题)的 function.php 文件中。已测试并有效。