Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save luisfelipe-dev/1619d4beb51f415294a288a81eb670c9 to your computer and use it in GitHub Desktop.

Select an option

Save luisfelipe-dev/1619d4beb51f415294a288a81eb670c9 to your computer and use it in GitHub Desktop.
Lista categorias custom post type - wordpress
<?php
$args = array (
'child_of' => 12
);
$categories = get_categories($args);
foreach($categories as $category) {
echo '<li id="'. $category->slug .'"><a href="' . get_category_link( $category->term_id ) . '">' . $category->name . '</a></li>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment