class-wc-settings-rest-api.php
5 years ago
html-admin-page-shipping-classes.php
1 month ago
html-admin-page-shipping-providers.php
1 month ago
html-admin-page-shipping-zone-methods.php
1 month ago
html-admin-page-shipping-zones-instance.php
8 years ago
html-admin-page-shipping-zones.php
1 month ago
html-keys-edit.php
1 month ago
html-settings-tax.php
1 year ago
html-webhooks-edit.php
1 month ago
settings-tax.php
2 months ago
html-admin-page-shipping-zones-instance.php
13 lines
| 1 | <?php |
| 2 | if ( ! defined( 'ABSPATH' ) ) { |
| 3 | exit; |
| 4 | } |
| 5 | ?> |
| 6 | <h2> |
| 7 | <a href="<?php echo admin_url( 'admin.php?page=wc-settings&tab=shipping' ); ?>"><?php _e( 'Shipping zones', 'woocommerce' ); ?></a> > |
| 8 | <a href="<?php echo admin_url( 'admin.php?page=wc-settings&tab=shipping&zone_id=' . absint( $zone->get_id() ) ); ?>"><?php echo esc_html( $zone->get_zone_name() ); ?></a> > |
| 9 | <?php echo esc_html( $shipping_method->get_method_title() ); ?> |
| 10 | </h2> |
| 11 | |
| 12 | <?php $shipping_method->admin_options(); ?> |
| 13 |