@irvingjs/wp-admin-bar
v4.2.0
Published
Integration for WordPress admin bar
Downloads
26
Readme
WordPress admin bar
This package contains a WordPress admin bar component.
Installation
npm install @irvingjs/wp-admin-bar
- The WP Irving plugin automatically adds the component to the components endpoint response for logged in users; however, you will see a "not configured" message until you add the component to your component map:
// componentMap.js
// Import it from the package.
import AdminBar from '@irvingjs/wp-admin-bar';
// Ensure it's included in the export.
export default {
'irving/admin-bar': AdminBar,
};