Opened 3 years ago
Closed 3 years ago
#12489 closed enhancement (worksforme)
Hook to add custom fields on blogroll
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Administration | Version: | |
| Severity: | normal | Keywords: | blogroll, hook, custom field |
| Cc: |
Description
I think could be very useful have an hook to add custom fields in the "add new link" page, so the blogroll could be enhanced with new plugins.
Change History (5)
comment:1
greenshady
— 3 years ago
comment:2
marcomail
— 3 years ago
Yes, something similar but for the page where you add new links in the blogroll, add_meta_box is for the write/edit post page
comment:3
follow-up:
↓ 4
greenshady
— 3 years ago
That code above does exactly what you're asking with the current WordPress.
Note: See
TracTickets for help on using
tickets.
You mean something other than using add_meta_box()?
add_meta_box( 'my-link-meta', 'My Link Meta', 'my_link_meta', 'link', 'normal', 'high' ); function my_link_meta() { echo '<p>Hello world!</p>'; }