php - Wordpress: Space between the slugs -


i have code display slugs of post:

<?php $terms = get_the_terms( $post->id, 'project-category' ); foreach($terms $term){ echo $term->slug; } ?> 

but sticky each other like:

cateogry-01cateogry-02

how can make like:

cateogry-01 cateogry-02

change:

echo $term->slug; 

to:

echo $term->slug . ' '; 

Comments

Popular posts from this blog

qt - QML MouseArea onWheel event not working properly when inside QML Scrollview -

java - is not an enclosing class / new Intent Cannot Resolve Constructor -

python - Error importing VideoFileClip from moviepy : AttributeError: 'PermissionError' object has no attribute 'message' -