1076 posts
- Author was Featured
- Has been a member for 4-5 years
- Author had a Free File of the Month
- Sold between 100 000 and 250 000 dollars
- Bought between 10 and 49 items
- Europe
- Exclusive Author
- Referred between 200 and 499 users
turkhitbox
says
Hi everyone, I would like to display some small description for each of the sidebars in Wp admin page -> Sidebars so that users know where each of them refer to. Is this something we can do?
ThemesDepot
says
Use ‘description’ => ‘something here’ into the sidebar array
1076 posts
- Author was Featured
- Has been a member for 4-5 years
- Author had a Free File of the Month
- Sold between 100 000 and 250 000 dollars
- Bought between 10 and 49 items
- Europe
- Exclusive Author
- Referred between 200 and 499 users
turkhitbox
says
Enova said
Use ‘description’ => ‘something here’ into the sidebar array
Thanks enova, appreciated
christopherjon
says
here is some expanded code…
register_sidebar(
array(
'id' => 'sidebar01',
'name' => __( 'Sidebar One' ),
'description' => __( 'A short description of the sidebar.' ),
'before_widget' => ' ',
'after_widget' => ' ',
'before_title' => ' ',
'after_title' => ' '
)
);
Hmm.. some stuff is missing ??? Oh well, you get the point.
