Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,004
- How-to & Troubleshooting
- 129,608
- Creating & Extending
- 25,789
- Requests & Feedback
- 9,498
- Third Party Plugins
- 9,791
- Showcase
- 3,316
- Ideas
- 1,384
- Miscellaneous
- 9,172
-
On a similar note… I wanted to remove one of the sidebars from the widget admin area since I won’t be using them all in my child template. I tried this but it did not work Spent a few hours researching and trying different things (including every possibly priority setting). No dice. I eventually gave up and hacked function file of the parent theme.
function remove_sidebar() {
unregister_sidebar('third-section');
}
add_action( 'admin_init', 'remove_sidebar');