02/18/2019 at 11:09 am
#484872
Keymaster
@ Craig
RE: Each ‘accordion’ is a category of yours. I want the description to show up when the user opens the accordion (or maybe before, I will play) so all I need here is the description I entered when I added the category into your database.
Ahhh… ok. Off the top of my head.
$term = Connections_Directory()->retrieve->category( x );
if ( $term instanceof cnTerm_Object ) {
if ( 0 < strlen( $term->description ) {
echo $term->description;
}
}
x equals the category ID.
