filtering edit-comments.php from text input
-
Hi!
I’ve been trying really hard to make the edit-comments.php page display a filter to show comments by specific author only. I want this to be by input, and not a drop down list. Do any one have an idea of how I can make that happen?
Here’s the code that works, but uses drop down list:
add_action('restrict_manage_comments', 'author_filter_2'); function author_filter_2() { $args = array('name' => 'user_id', 'show_option_all' => 'View all authors'); if (isset($_GET['user_id'])) { $args['user_id'] = $_GET['user']; } wp_dropdown_users($args); }
thanks for any help!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘filtering edit-comments.php from text input’ is closed to new replies.