嗨,我不能在類別標題功能中添加CSS類名稱。如何在下面的函數中添加類名:如何在標題中添加css
<?php the_category(', '); ?> //function return array of category
嗨,我不能在類別標題功能中添加CSS類名稱。如何在下面的函數中添加類名:如何在標題中添加css
<?php the_category(', '); ?> //function return array of category
你必須重寫功能,已經在模板中,
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
<?php ! isset($ loop_first)和the_category(','); $ loop_first = 1;如何在此代碼中添加css類 –
您可以添加圖像什麼,你需要改變 –
實際上我想添加css到()爲此數組<?php the_category();?> .is它可能? –
增加了一個tag.Add一些細節,使簡單易懂的問題。 –