Skip to content

Instantly share code, notes, and snippets.

@jaworowicz
Created May 13, 2017 19:24
Show Gist options
  • Save jaworowicz/a8029c71806c16abb324a0489e4b5c49 to your computer and use it in GitHub Desktop.
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
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