This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*============================================================================= | |
= WPML Get posts from each terms in accordion style for = | |
=============================================================================*/ | |
$args = array( | |
'taxonomy' => 'TAXONOMY', // defaults to 'category' | |
'parent' => 0, // top level only | |
); | |
$terms = get_terms( $args ); | |
?> |