Podcast E524 – 6 Things to NOT Do In Your Business

This week I share 6 things your should not do in your business!

Upcoming Events

  • No WordCamps

Segment 1: In the News

Segment 2:  6 things your should not do in your business!

Segment 3: Tool of the Week

Code to have your pages be default sorted by date vs name

function custom_order_pages_by_date($query) {

    if (is_admin() && $query->is_main_query() && $query->get('post_type') === 'page') {

        $query->set('orderby', 'date');

        $query->set('order', 'DESC');

    }

}

add_action('pre_get_posts', 'custom_order_pages_by_date');

 


This weeks podcast is sponsored by

memberful.com/kitchensink

kswp-e524