이 답변은 "제목 길이"와 "단어 길이 ", 한 마디를 피하기 위해.
부분적으로 this answer과 woocommerce_template_loop_product_title()
WooCommerce 기본 기능에 따라이 기능은, 그 상점 페이지에 제목을 표시 할 content-product.php WooCommerce 템플릿, 에 사용됩니다. 여기
나는 당신의 제한 문자열 길이을 포함, 그러나 또한 휴식 단어를 방지하기 위해, 복잡한 "단어 길이" 검출을 기반으로 :
if ( ! function_exists('woocommerce_template_loop_product_title')) {
// Show the product title in the product loop. By default this is an <h3> html tag.
function woocommerce_template_loop_product_title() {
// Define the lenght limit for title (by line)
$limit = 29;
$title = get_the_title();
$lenght = strlen($title);
// 1. The title length is higher than limit
if ($lenght >= $limit) {
$title_arr1 = array();
$title_arr2 = array();
$sum_length_words = -1;
// an array of the words of the title
$title_word_arr = explode(' ', $title);
// iterate each word in the title
foreach($title_word_arr as $word){
// Length of current word (+1 space)
$length_word = strlen($word) + 1;
// Adding the current word lenght to total words lenght
$sum_length_words += $length_word;
// Separating title in 2 arrays of words depending on lenght limit
if ($sum_length_words <= $limit)
$title_arr1[] .= $word;
else
$title_arr2[] .= $word;
}
// Converting each array in a string
$splitted_title = implode(" ", $title_arr1). ' ('. strlen(implode(" ", $title_arr1)) .')';
$splitted_title .= '<br>'; // adding <br> between the 2 string
$splitted_title .= implode(" ", $title_arr2). ' ('. strlen(implode(" ", $title_arr2)) .')';
echo '<h3>' . $splitted_title . '</h3>';
// 2. The title length is NOT higher than limit
} else {
echo '<h3>' . $title . '</h3>';
}
}
}
이 코드는 기능에 간다. 활성 자식 테마 (또는 테마) 또는 모든 플러그인 파일의 PHP 파일.
이 코드는 테스트되었으며 작동합니다.
내가 어떻게 원래 의도했던이 작업을 할 수있는 방법이 있습니까? 마치 내가 제품 이름을 단락 한 것처럼 사용자에게 실제로 이해가되지 않는다. –