Created
October 4, 2018 16:22
-
-
Save luisfelipe-dev/1619d4beb51f415294a288a81eb670c9 to your computer and use it in GitHub Desktop.
Lista categorias custom post type - 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
| <?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