Go to functions.php and write the following code.
Category: Themes
WordPress customization part 1- removing menu from wordpress dashboard
This is the first part of wordpress customization series. In this tutorial i will discus about removing menu from wordpress dashboard. Removing a menu from dashboard doesn’t means that the menu has removed forever but it is just hide from admin screen. WordPress is a very popular cms (Content Management System) that provide us a very usual and easy back end environment.…
WordPress Hooks and Filters introduction
WordPress hooks are predefined functions that provide the facility of attaching your custom php code to wordpress. You can change or modify the default behavior wordpress using Hooks. Custom functions are applied into action hooks or filter hooks. There are two types of wordpress Hooks. 1: Action hooks 2: Filter hooks Action hooks are functions preformed when an event…