gpt4 book ai didi

wordpress - 是否可以更改 WordPress 管理面板上 WooCommerce 的产品菜单链接的文本?

转载 作者:行者123 更新时间:2023-12-02 22:30:22 25 4
gpt4 key购买 nike

我们可以更改显示“产品”的父名称,然后将该名称更改为其他名称,但不能更改子名称。

可能吗?

enter image description here

非常感谢

最佳答案

有两种方法可以做到这一点。首先是通过提供的 PO/MO 文件进行翻译。

另一种方式,您可以更改过滤器上的标签。

add_filter( 'woocommerce_register_post_type_product', 'custom_post_type_label_woo' );

function custom_post_type_label_woo( $args ){
$labels = array(
'name' => __( 'Elements', 'your-custom-plugin' ),
'singular_name' => __( 'Element', 'your-custom-plugin' ),
'menu_name' => _x( 'Elements', 'Admin menu name', 'your-custom-plugin' ),
'add_new' => __( 'Add Element', 'your-custom-plugin' ),
'add_new_item' => __( 'Add New Tour', 'your-custom-plugin' ),
'edit' => __( 'Edit Element', 'your-custom-plugin' ),
'edit_item' => __( 'Edit Element', 'your-custom-plugin' ),
'new_item' => __( 'New Element', 'your-custom-plugin' ),
'view' => __( 'View Element', 'your-custom-plugin' ),
'view_item' => __( 'View Element', 'your-custom-plugin' ),
'search_items' => __( 'Search Elements', 'your-custom-plugin' ),
'not_found' => __( 'No Elements found', 'your-custom-plugin' ),
'not_found_in_trash' => __( 'No Elements found in trash', 'your-custom-plugin' ),
'parent' => __( 'Parent Element', 'your-custom-plugin' )
);

$args['labels'] = $labels;
$args['description'] = __( 'This is where you can add new tours to your store.', 'your-custom-plugin' );
return $args;
}

关于wordpress - 是否可以更改 WordPress 管理面板上 WooCommerce 的产品菜单链接的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36899585/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com