Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: edit_category_form_fields

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
69                       <?php wp_dropdown_categories(array('hide_empty' => 0, 'name' => 'category_parent', 'orderby' => 'name', 'selected' => $category->parent, 'exclude' => $category->term_id, 'hierarchical' => true, 'show_option_none' => __('None'))); ?><br />
70                 <span class="description"><?php _e('Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'); ?></span>
71                  </td>
72           </tr>
73           <tr class="form-field">
74                <th scope="row" valign="top"><label for="category_description"><?php _e('Description') ?></label></th>
75                <td><textarea name="category_description" id="category_description" rows="5" cols="50" style="width: 97%;"><?php echo esc_html($category->description); ?></textarea><br />
76             <span class="description"><?php _e('The description is not prominent by default; however, some themes may show it.'); ?></span></td>
77           </tr>
78           <?php do_action('edit_category_form_fields', $category); ?>
79      </table>
80 <p class="submit"><input type="submit" class="button-primary" name="submit" value="<?php esc_attr_e('Update Category'); ?>" /></p>
81 <?php do_action('edit_category_form', $category); ?>
82 </form>
83 </div>
84