Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('site-reviews/assigned_users/profile_id', function ($profileId) {
- if (!empty($profileId)) {
- return $profileId;
- }
- if (is_author()) {
- global $wp_query;
- $author = $wp_query->get_queried_object();
- if (isset($author->ID)) {
- $profileId = $author->ID;
- }
- }
- return $profileId;
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement