mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
10 lines
279 B
Text
10 lines
279 B
Text
add_action('template_redirect', 'wc_redirect_to_orders_from_dashboard' );
|
|
|
|
function wc_redirect_to_orders_from_dashboard(){
|
|
|
|
if( is_account_page() && empty( WC()->query->get_current_endpoint() ) ){
|
|
wp_safe_redirect( wc_get_account_endpoint_url( 'orders' ) );
|
|
exit;
|
|
}
|
|
|
|
}
|