Skip to content

Instantly share code, notes, and snippets.

@cheh
cheh / gist:424a7ba485496ba524fd57ff5ee5c0c6
Created March 3, 2017 13:22
Cherry5: Cherry Sidebars on Custom Post Types
add_filter( 'cherry_sidebar_post_type', 'my_prefix_add_custom_sidebars_support' );
function my_prefix_add_custom_sidebars_support( $post_types ) {
$post_types[] = 'my-post-type-name-slug'; // tm-property
return $post_types;
}
@mikejolley
mikejolley / gist:1622323
Created January 16, 2012 18:54
WooCommerce - Change default catalog sort order
/**
* This code should be added to functions.php of your theme
**/
add_filter('woocommerce_default_catalog_orderby', 'custom_default_catalog_orderby');
function custom_default_catalog_orderby() {
return 'date'; // Can also use title and price
}