【发布时间】:2017-10-20 14:26:05
【问题描述】:
您好,我想将新的自定义标题和链接添加到我的 WooCommerce 网站的“我的帐户”页面中。搜索了所有文档和 Stackoverflow 主题,但没有找到我的请求的解决方案。
这是我要求的标题
文本 Muj Ucet 是我的英文帐户。 :)
我想添加新标题,如下图所示:
这是该部分的 WooCommerce 模板代码:
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<p><?php
/* translators: 1: user display name 2: logout url */
printf(
__( 'Hello %1$s (not %1$s? <a href="%2$s">Log out</a>)', 'woocommerce'
),
'<strong>' . esc_html( $current_user->display_name ) . '</strong>',
esc_url( wc_logout_url( wc_get_page_permalink( 'myaccount' ) ) )
);
?></p>
<p>Na nástěnce svého uživatelského účtu si můžete stáhnout své zakoupené
produkty a faktury, upravit své osobní informace, změnit heslo nebo
fakturační adresu.</p>
<?php
/**
* My Account dashboard.
*
* @since 2.6.0
*/
do_action( 'woocommerce_account_dashboard' );
/**
* Deprecated woocommerce_before_my_account action.
*
* @deprecated 2.6.0
*/
do_action( 'woocommerce_before_my_account' );
/**
* Deprecated woocommerce_after_my_account action.
*
* @deprecated 2.6.0
*/
do_action( 'woocommerce_after_my_account' );
/* Omit closing PHP tag at the end of PHP files to avoid "headers already
sent" issues. */
我想在该侧边栏下方添加一个新标题。如何注册新作品?
谢谢
【问题讨论】:
标签: php wordpress woocommerce endpoint