Array
(
[0] => Array
(
[0] => Одежда и обувь
[1] => http: //url/product-category/odezhda-i-obuv/
)
[1] => Array
(
[0] => Обувь
[1] => http: //url/product-category/odezhda-i-obuv/obuv/
)
[2] => Array
(
[0] => Кроссовки и кеды
[1] => http: //url/product-category/odezhda-i-obuv/obuv/krossovki-i-kedy/
)
)
'options' => array(
'MBO' => __( 'Один', 'woocommerce' ),
'HBO' => __( 'Два', 'woocommerce' ),
'WO' => __( 'Три', 'woocommerce' )
)
function save_product_options_custom_fields( $post_id ){
if( isset( $_POST['_custom_level'] ) ){
$post_data = $_POST['_custom_level'];
// Data sanitization
$sanitize_data = array();
if( is_array($post_data) && sizeof($post_data) > 0 ){
foreach( $post_data as $value ){
$sanitize_data[] = esc_attr( $value );
}
}
update_post_meta( $post_id, '_custom_level', $sanitize_data );
} else {
delete_post_meta( $post_id, '_custom_level' );
}
}
function save_product_options_custom_fields( $post_id ){
if( isset( $_POST['_custom_level'] ) ){
$post_data = $_POST['_custom_level'];
// Data sanitization
$sanitize_data = array();
if( is_array($post_data) && sizeof($post_data) > 0 ){
foreach( $post_data as $value ){
$sanitize_data[] = esc_attr( $value );
}
}
update_post_meta( $post_id, '_custom_level', $sanitize_data );
}
}
foreach ( $field['options'] as $key => $value ) {
echo '<li><label><input
name="' . esc_attr( $field['name'] ) . '"
value="' . esc_attr( $key ) . '"
type="checkbox"
class="' . esc_attr( $field['class'] ) . '"
style="' . esc_attr( $field['style'] ) . '"
' . array_search($key, is_array($field["value"]) ? $field["value"]:array($field["value"])) !== false ? "checked": '' . ' /> ' . esc_html( $value ) . '</label>
</li>';
}
Такой способ вывода хлебных крошек имеет место быть ?
Просто в woocommerce нету фильтров для добавления класса для ссылок (