Created
May 13, 2017 19:24
-
-
Save jaworowicz/a8029c71806c16abb324a0489e4b5c49 to your computer and use it in GitHub Desktop.
Wyświetlanie jednej kategorii - glownej, podczas gdy post jest również w kategoriach podrzędnych. http://jaworowi.cz/category/naprawa-wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function g7_first_category() { | |
$category = get_the_category(); | |
$category_name = ''; | |
if ($category[0]) { | |
$category_name = sprintf( | |
'<a href="%s">%s</a>', | |
get_category_link($category[0]->term_id), | |
$category[0]->cat_name | |
); | |
} | |
return $category_name; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment