如何创建自定义 woocommerce 仪表板模板
How to Create custom woocommerce dashboard Template
我正在尝试为我的自定义 wordpress 主题创建自定义 woocommerce 仪表板,但我在尝试创建自定义 woocommerce 仪表板模板时发现了一条错误消息。
Deprecated: Your theme version of my-account.php template is deprecated since version 2.6! Use the latest version, which supports multiple account pages and navigation, from WC 2.6.0 instead.
我遵循了 woocommerce 模板模式 (yourtheme/woocommerce/myaccount/my-account.php.)
但没有任何帮助。请看附图。如果我用 define( 'WP_DEBUG_DISPLAY', false );
编辑 wp-config.php 问题就会消失
谢谢
我找到了解决办法。
我必须在 my-account.php
文件中使用这两个函数。
然后错误信息消失了。
do_action( 'woocommerce_account_navigation' );
do_action( 'woocommerce_account_content' );
我正在尝试为我的自定义 wordpress 主题创建自定义 woocommerce 仪表板,但我在尝试创建自定义 woocommerce 仪表板模板时发现了一条错误消息。
Deprecated: Your theme version of my-account.php template is deprecated since version 2.6! Use the latest version, which supports multiple account pages and navigation, from WC 2.6.0 instead.
我遵循了 woocommerce 模板模式 (yourtheme/woocommerce/myaccount/my-account.php.)
但没有任何帮助。请看附图。如果我用 define( 'WP_DEBUG_DISPLAY', false );
谢谢
我找到了解决办法。
我必须在 my-account.php
文件中使用这两个函数。
然后错误信息消失了。
do_action( 'woocommerce_account_navigation' );
do_action( 'woocommerce_account_content' );