// Обрізання довжини опису категорій товарів в адмінці WooCommerce add_filter( 'manage_edit-product_cat_columns', 'custom_shorten_category_description', 99 ); function custom_shorten_category_description( $columns ) { add_action( 'manage_product_cat_custom_column', function( $deprecated, $column_name, $term_id ) { if ( 'description' === $column_name ) { $term = get_term( $term_id, 'product_cat' ); if ( $term && ! is_wp_error( $term ) ) { // Видаляємо HTML теги та залишаємо 120 символів $clean_text = wp_strip_all_tags( $term->description ); if ( mb_strlen( $clean_text ) > 120 ) { echo mb_substr( $clean_text, 0, 120 ) . '...'; } else { echo $clean_text; } } } }, 10, 3 ); return $columns; } Коментарі до: Cubilia sem tempor porta https://kiddymall.com.ua/product/cubilia-sem-tempor-porta/ Магазин дитячих товарів Mon, 08 May 2023 07:16:39 +0000 hourly 1 https://wordpress.org/?v=7.1