I have a need to include user profiles, along with posts & pages, in front-end searches. I’ve searched for solutions to this problem (both here on WSE and elsewhere...
  • May 16, 2022
  • 0 Comments
Is there a hook in WP to access meta data of a user JUST after they have registered and meta data has been added to the database? I was...
  • May 16, 2022
  • 0 Comments
I’d like to send email notifications when new posts are saved. But users can select post categories they want to subscribe to. Available plugins are no solution to me...
  • May 14, 2022
  • 0 Comments
This is my code: $args = array ( 'order' => 'DESC', 'include' => get_user_meta($author->ID, 'the_following_users', true) ); $wp_user_query = new WP_User_Query( $args ); $users = $wp_user_query->get_results(); if ( !...
  • May 14, 2022
  • 0 Comments
What I’m trying to do: Add new user meta fields that can be updated when the user edits their profile Validate them correctly when the form is submitted What...
  • May 14, 2022
  • 0 Comments