'; get_template_part( 'searchform' ); echo ''; /* TAGS */ $tags = get_tags(); if( !empty( $tags ) ){ echo '
'; echo '

' . __( 'Tags' , 'cannyon' ) . '

'; echo '
'; foreach( $tags as $t => $tag ){ $tag_url = get_tag_link( $tag -> term_id ); if( is_wp_error( $tag_url ) ){ continue; } echo ''; echo esc_html( $tag -> name ); echo ''; } echo '
'; echo '
'; } /* CATEGORIES */ $categories = get_categories( ); if( !empty( $categories ) ){ echo '
'; echo '

' . __( 'Categories' , 'cannyon' ) . '

'; echo ''; echo '
'; } } ?>