'sidebar', 'before_widget' => '
No Category.
| Category: '; wp_dropdown_categories(array('include' => $cats_string, 'id' => 'cat_from_' . get_the_ID(), 'class' => 'dropdown-categories')); echo '
'; } else { echo '| Category: '; the_category(', '); echo '
'; } } function show_the_tags() { $tags = get_the_tags(); if(!empty($tags)) { $dropdown_tags = ""; if(count($tags) > 2) { print '| Tags: '; print $dropdown_tags; print '
'; } else { print '| Tags: '; the_tags('' ,', '); print '
'; } } } /** * Copied from Twenty Ten Theme and modified */ if ( ! function_exists( 'posted_in' ) ) : function posted_in() { $tag_list = get_the_tag_list( '', ', ' ); if ( $tag_list ) { $posted_in = 'This entry was posted in %1$s and tagged %2$s. Bookmark the permalink.'; } elseif ( is_object_in_taxonomy( get_post_type(), 'category' ) ) { $posted_in = 'This entry was posted in %1$s. Bookmark the permalink.'; } else { $posted_in = 'Bookmark the permalink.'; } printf( $posted_in, get_the_category_list( ', ' ), $tag_list, get_permalink(), the_title_attribute( 'echo=0' ) ); } endif; ?>