Speed up your WordPress Development

How to disable admin bar in WordPress

The WordPress admin bar provides several links such as adding new posts, pages, etc. However, if you want to remove such options, here is the solution for it. Paste the following to the function.php in your child theme. Here we are simply using add_filter to remove the admin bar by returning false.

How to disable search feature in WordPress

The Search feature of WordPress is around for a long time. However, if you do not want your users to search through your site for some reason, then this snippet will be helpful. It not just removes the search bar in your sidebar menu but removes the entire concept of WP search. This can be

Scroll to Top