Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Display tags for posts under Work Category? Re: Display tags for posts under Work Category?

#132444
contentJones
Member

Stripping out the tag link is a pain. Here’s a snippet that creates a tab delimited list, but it’s for each post. Maybe there’s a way to use some of it for a category.

ID,’specialties’);
if(!empty($all_terms)){
if(!is_wp_error( $all_terms )) {
foreach($all_terms as $term) {
echo $term->name.’, ‘;
}
}
}
?>