This week I share 6 things your should not do in your business!
Upcoming Events
Segment 1: In the News
- Cwicly’s Unexpected Farewell: Founder Decides to Discontinue Development
- KSWP March Madness Hacker Edition
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');
- Download Zip File - json file.
Sponsored by
memberful.com/kitchensink