Skip to content

Instantly share code, notes, and snippets.

View baikaresandip's full-sized avatar
🎯
Focusing

Baikare Sandip baikaresandip

🎯
Focusing
View GitHub Profile
@baikaresandip
baikaresandip / README.md
Created April 13, 2018 11:13 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet
@baikaresandip
baikaresandip / list_treestructure_terms.php
Created August 29, 2017 14:07
List the terms with tree structure
<?php
/**
* list the taxonomy of custom post type with tree structure
* @param string $taxonomy name of taxonomy
* @param integer $parent parent term_id of term
* @return string generate the list of taxonomy
*/
function custom_taxonomy_walker( $taxonomy, $parent = 0 ){
$terms = get_terms($taxonomy, array('parent' => $parent, 'hide_empty' => false, 'orderby' => 'name'));
//If there are terms, start displaying