Şöyle birşey buldum ama işe yaramadı;
functions.php dosyasına aşağıdaki kodu
remove_filter('pre_term_description', 'wp_filter_kses');
Ama bu işe yaramıyor ..
Edit:
Şu şekilde çözüldü;
$categories = get_the_category();
foreach($categories as $key => $category) {
$url = get_term_link((int)$category->term_id,'category');
$categories[$key] =
"{$category->name} " .
"{$category->category_description} ";
}
echo themeslug_limit_words($categories[0], 160);
?>
Bunu da functions.php'de bir yere ekleyin;
function temaslug_limit_words($string, $limit) {
$words = explode(' ', $string);
return implode(' ', array_slice($words, 0, $limit));
}