Quantcast
Channel: WordPress › Support » Forum: Hacks - Recent Topics
Viewing all articles
Browse latest Browse all 8245

lindorblu on "search by tags"

$
0
0

Hi!
I need to modify this part of code to have search by tags.

<?php
						$author_args = array(
									'taxonomy'        =>'authors',
									'show_option_all' => __( 'All Authors', 'raakbookoo' ),
									'hide_empty'      => 1,
									'orderby'         => 'slug',
									'order'           => 'ASC',
									'name'            => 'authors'
						);
						$author = get_term_by( 'slug', get_query_var( 'authors' ), 'authors' );
						if ( $author ) {
							$author_args['selected'] = $author->term_id;
						}
						wp_dropdown_categories( $author_args );
					?>

Anyone could help? Thank you :)


Viewing all articles
Browse latest Browse all 8245

Trending Articles