WordPress Code Standards and Working $link Parameters In Shortcode
how to make this shortcode [parent-child] working with link=false , and no extract in shortcode. You can never pass boolean value as shortcode parameter, rather it should be treated as string. Your comparison over the param link value false should be used as ‘false’ (string). add_shortcode( ‘parent-child’, ‘taxonomy_hierarchy’ ); function taxonomy_hierarchy( $atts ){ // Don’t … Read more