Skip to content

Instantly share code, notes, and snippets.

@ferdisahin
Last active May 28, 2019 21:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ferdisahin/634a30e463c9689bb79198d7d50cd86b to your computer and use it in GitHub Desktop.
Save ferdisahin/634a30e463c9689bb79198d7d50cd86b to your computer and use it in GitHub Desktop.
Wordpress İlk Kategoriyi Gösterme
function ilk_kategori(){
$kategoriler = get_the_category();
if(!empty($kategoriler)){
echo '<a href="'.esc_url(get_category_link($kategoriler[0]->term_id)).'">'.esc_html($kategoriler[0]->name).'</a>';
}
}
function ilk_kategori(){
$kategoriler = get_the_category();
if(!empty($kategoriler)){
echo esc_html($kategoriler[0]->name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment