Suggestions
-
Love the theme, really makes the backend stand out.
Plugin code is clean and well organized, almost too organized, but better that than a cluttered mess. From a developer to a developer, well done. WP should consider this theme, and adding settings to mimic it if they ever redesign the WP admin area – it actually makes it look modern and fun.
1) Only include hideNag for non-admins, or add a setting to enable/disable it globally.
2) Add a setting to customize the footer, instead of displaying design by Mito. I’m a developer, I get the point, but I’d rather have a setting to turn off / edit that footer text rather than commenting out the include of footer.php
3) In postToBlog, if a user role doesn’t have access to edit_posts, they still end up seeing the “Blog” menu with your theme. This can be easily fixed by adding a condition to the code, and I’ve also included a sanity check to make sure we are operating on the correct menu item either way:
if (isset($menu[5][5]) && $menu[5][5] === "menu-posts" && current_user_can("edit_posts")) { $menu[5][0] = 'Blog'; $submenu['edit.php'][5][0] = 'List All Posts'; $submenu['edit.php'][10][0] = 'Add Blog Post'; $submenu['edit.php'][16][0] = 'Blog Tags'; }
4) Options to change the colors would be nice, or just provide a few different themes. I personally dig the colors, but others might not.
- The topic ‘Suggestions’ is closed to new replies.