mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 22:30:04 +00:00
Associate lables with form fields. Fixes #6859 props MarcoZ.
git-svn-id: https://develop.svn.wordpress.org/trunk@7883 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -22,9 +22,9 @@ require_once ('admin-header.php');
|
||||
|
||||
<table class="form-table">
|
||||
<tr>
|
||||
<th><?php _e('Restrict Author'); ?></th>
|
||||
<th><label for="author"><?php _e('Restrict Author'); ?></label></th>
|
||||
<td>
|
||||
<select name="author">
|
||||
<select name="author" id="author">
|
||||
<option value="all" selected="selected"><?php _e('All Authors'); ?></option>
|
||||
<?php
|
||||
$authors = $wpdb->get_col( "SELECT post_author FROM $wpdb->posts GROUP BY post_author" );
|
||||
|
||||
Reference in New Issue
Block a user