Podcast E327 – Listener Questions, Answered!

This week I answer listener questions

Upcoming Events

Segment 1: In the News

  • Automattic invests in Matrix
  • Happy belated birthday!

Segment 2:  Listener Q/A

  • SSL Certificates
  • Working from home
  • Removing site health check notifications
// Removes site health check widget

add_action('wp_dashboard_setup', 'remove_site_health_dashboard_widget');

function remove_site_health_dashboard_widget()

{

remove_meta_box('dashboard_site_health', 'dashboard', 'normal');

}

Segment 3: Tool of the Week

qa