Search by tag, category and author without plugin

I can think of two options: Multiple WP_Queries, each for normal search, taxonomies and meta. And merge the results you get from each. OR A WPDB query, with join between _post, _postmeta, _terms(and all tables related to terms). Although I will prefer 1st method, it’s your choice what you are comfortable with and performance you … Read more

custom browse by

In your tag code you are missing a few quotes chars, the $tag var, and you cant endforeach like that i add braces for it: <div class=”tag-cloud” style=”margin: 20px 0;”> <?php echo ‘<select class=”tags”>’; // Add custom option as default echo ‘<option>’ . __(‘Select Tag’, ‘text-domain’) . ‘</option>’; // Get categories as array $tags = … Read more