This week I explain what Hooks are and how they can be helpful.
Upcoming Events
Segment 1: In the News
- WordPress 4.2.4 released.
- Headway Theme V4 is around the corner!
Segment 2: “check out the HOOK while my DJ revolves it!”
Sample to remove QuickPress Widget
// Create the function to use in the action hook
function example_remove_dashboard_widget() {
remove_meta_box( ‘dashboard_quick_press', ‘dashboard', ‘side' );
}
// Hook into the ‘wp_dashboard_setup' action to register our function
add_action(‘wp_dashboard_setup', ‘example_remove_dashboard_widget' );
Resources:
Segment 3: Tool of the Week