The admin-bar tag has no wiki summary.
7
votes
3answers
1k views
Is the new WordPress 3.1 admin bar pluggable and how can I extend it?
How can I extend the functions of the WordPress 3.1 admin bar in my plugins?
I am looking for specific hooks and filters to use in adding links or other features to the admin bar.
A good example ...
5
votes
2answers
722 views
WordPress Admin Bar Moving Links
Is there a way to move the links such as Add New Appearance Comments into one menu
1
vote
3answers
907 views
Change existing label in the admin bar with something else
In the admin bar an admin can create a new post by using the add new drop down. In there I want to change the label Post to something else.
How can I do this? I just need the code to make the change ...
6
votes
2answers
2k views
How do I remove the admin bar (styling) from frontend only?
When logged in, the admin bar adds the following to my page <head> section:
<style media="screen" type="text/css">
html { margin-top: 28px !important; }
* html body { margin-top: ...
2
votes
1answer
203 views
How to add admin bar and admin menu or submenu notification bubbles?
What would you recommend to use as far as manipulating the admin bar goes? I was thinking to just add a new admin bar node, and with CSS set a background image for the icon. Then in the node, just ...
3
votes
3answers
508 views
Make 'Howdy, [name]' function as log out button
I have been customising the admin bar in version 3.3 to only have certain custom links with the following added to functions.php:
function mytheme_admin_bar_render() {
global $wp_admin_bar;
...
2
votes
4answers
646 views
Remove WordPress Toolbar buttons
Is there anyway to remove the 'W' icon from the WordPress toolbar located at the top, when Authors login?
I know that an author can uncheck an option for an individual user, but we need to do this ...
2
votes
3answers
1k views
How to re-enable admin bar with Buddypress active? (BP bar removed)
How do I force WordPress/Buddypress to use the WordPress admin bar on the frontend?
I know that I can disable the BP bar with define( 'BP_DISABLE_ADMIN_BAR', true ); in the config, but the admin bar ...
0
votes
4answers
571 views
Admin Bar CSS left over after removal
I am using the following code to remove the admin bar (client request).
add_filter( 'show_admin_bar', '__return_false' );
Trouble is, it leaves some autogenerating CSS, which places a massive white ...
5
votes
2answers
2k views
remove “edit your profile” from admin menu bar
How can I remove "edit your profile" submenu under "my-account-with-avatar" admin menu bar, while still keeping the avatar and logout?
3
votes
2answers
468 views
Admin Bar menu item that executes Javascript but does not reload the page?
I added a menu item to the Admin Bar that executes some Javascript to show debug information. The problem is that clicking this item also reloads the page. How can I prevent this?
I was trying to ...
1
vote
2answers
298 views
Is there a ready-made fix to make the admin bar not obscure content?
I have a situation where the Wordpress 3 Admin Bar (which is cool and I do want to have) obscures some important information on my page.
Before I start fiddling with the CSS myself (which I'm sure ...
1
vote
3answers
1k views
Removing admin bar from wordpress dashboard
I'm using wordpress multiste 3.3.1
I'm not gonna update it in the future. So I disabled all upgrade functions.
I want to remove the wordpress admin bar from both frontend as well as dashboard.
I can ...
1
vote
5answers
170 views
Problems with removing admin bar
I am trying to remove the admin bar from a theme front end of a theme.
I found the following code block:
add_filter( 'show_admin_bar', '__return_false' );
remove_action( 'personal_options', ...
0
votes
1answer
193 views
How to remove wordpress admin bar in dashboard
I would like to rebrand wordpress. Can anyone tell me how to remove it from dashboard?
Is there any hook available. Or I should edit core files. If i should edit core file can anyone tell me which ...