Opened 10 years ago
Last modified 8 years ago
#30527 new enhancement
function to add separator
Reported by: | cfoellmann | Owned by: | |
---|---|---|---|
Milestone: | Future Release | Priority: | normal |
Severity: | minor | Version: | |
Component: | Administration | Keywords: | has-patch needs-refresh |
Focuses: | Cc: |
Description
added the function add_menu_separator( $position )
.
Usage:
add_action('admin_menu', 'separator'); function separator() { add_menu_separator(61); }
Adds a separator after 'Appearance'. - Just an example.
Attachments (1)
Change History (8)
#2
@
10 years ago
Adding menu separators, just not after Appearance, in the admin area is really up to the user. The user can just add this function to their functions.php, provided they are working with a child theme. Here's a concrete example of how someone can do this in the form of a screenshot.
Note: See
TracTickets for help on using
tickets.
add_menu_separator function