2016-12-25 76 views
-1

嗨,我不能在類別標題功能中添加CSS類名稱。如何在下面的函數中添加類名:如何在標題中添加css

<?php the_category(', '); ?> //function return array of category 
+0

增加了一個tag.Add一些細節,使簡單易懂的問題。 –

回答

1

你必須重寫功能,已經在模板中,

https://core.trac.wordpress.org/browser/tags/3.5.1/wp-includes/category-template.php#L249

您可以使用the_category過濾掛鉤一個回調函數是這樣的:

add_filter('the_category','add_class_to_category',10,3); 

function add_class_to_category($thelist, $separator, $parents){ 
    $class_to_add = 'category-class'; 
    return str_replace('<a href="', '<a class="' . $class_to_add . '" href="', $thelist); 
} 

你必須粘貼此代碼到一個functions.php

+0

<?php ! isset($ loop_first)和the_category(','); $ loop_first = 1;如何在此代碼中添加css類 –

+0

您可以添加圖像什麼,你需要改變 –

+0

實際上我想添加css到()爲此數組<?php the_category();?> .is它可能? –