Change author to any subscriber no longer works after WP 5+
-
The function below used to work great until WP5+ to assign any WP user as an author of a post.
add_filter( 'wp_dropdown_users_args', 'add_subscribers_to_dropdown', 10, 2 ); function add_subscribers_to_dropdown( $query_args, $r ) { $query_args['who'] = ''; return $query_args; }
I can’t find in the docs what’s changed that made this stop working.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Change author to any subscriber no longer works after WP 5+’ is closed to new replies.