Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

childless location

// Add Shortcode
function location_childless_shortcode( $atts , $content = null ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'taxonomy' => 'location',
			'childless' => 'true',
		),
		$atts,
		'childless-location'
	);

}
add_shortcode( 'childless-location', 'location_childless_shortcode' );