Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

NOMIS – Display Organization Projects

// Add Shortcode
function nomis_organization_projects() {

	$terms = get_field('organization-projects');
	if( $terms ): ?>
	    <ul>
	    <?php foreach( $terms as $term ): ?>
	        <li>
	            <h2><?php echo esc_html( $term->name ); ?></h2>
	            <p><?php echo esc_html( $term->description ); ?></p>
	            <a href="<?php echo esc_url( get_term_link( $term ) ); ?>">View all '<?php echo esc_html( $term->name ); ?>' posts</a>
	        </li>
	    <?php endforeach; ?>
	    </ul>

}
add_shortcode( 'display_oragnization_projects', 'nomis_organization_projects' );