Skip to content

Instantly share code, notes, and snippets.

@ambercouch
Created February 4, 2016 12:14
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 ambercouch/c6c73594c59fab30aec9 to your computer and use it in GitHub Desktop.
Save ambercouch/c6c73594c59fab30aec9 to your computer and use it in GitHub Desktop.
Get only the first category of a post when using get_the_category_list() in your template.
<?php
//filters WordPress the_category_list to return onlt the first category.
function first_cat($cats)
{
return [$cats[0]];
}
add_filter('the_category_list', 'first_cat');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment