1 2 3 4 5 6 7 8 9 10 11 12
<?php function custom_woo_ce_format_post_status( $output = '', $post_status = '' ) { if( $post_status == 'publish' ) $output = 'p'; else if( $post_status == 'draft' ) $output = 'd'; return $output; } add_filter( 'woo_ce_format_post_status', 'custom_woo_ce_format_post_status', 10, 2 ); ?>
You can clone a snippet to your computer for local editing. Learn more.