Best way to enable sorting by 3 criteria on a page of listings

Could you clarify, I think what your asking is if your able to specify post types when querying – you certainly can. http://codex.wordpress.org/Class_Reference/WP_Query#Type_.26_Status_Parameters If you asking about category searches, then yes of course. That same link also has information on querying taxonomy, there are many ways to do that thought that depend on the actual … Read more

List all authors by matching custom meta data on a category page

Try the WP_User_Query, something like: $term = get_queried_object(); $users = new WP_User_Query(array( ‘meta_key’ => ‘your_meta_key’, // the key in which you store your terms ‘meta_value’ => (int)$term->term_id, // assuming you store term IDs )); print_r($users->get_results()); A update based on your input: $term = get_queried_object(); $user_query = new WP_User_Query(array( ‘role’ => ‘subscriber’, // or whatever your … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)