Skip to content

Instantly share code, notes, and snippets.

View richardscholtens's full-sized avatar

Richard Scholtens richardscholtens

View GitHub Profile
@richardscholtens
richardscholtens / wp-hierarchical-taxonomy.php
Last active April 5, 2023 10:51 — forked from ciccarone/wp-hierarchical-taxonomy.php
Just a way to programmatically add hierarchical taxonomies in WordPress
// For one level deep Wordpress nested terms.
$taxonomy_term = 'example';
$related_terms = array(
__( 'Parent' ) => array(
__( 'Child 1' ),
__( 'Child 2' ),
),
__( 'Parent 2') => array(