Skip to content

Instantly share code, notes, and snippets.

@mjangda
Created January 31, 2011 22:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mjangda/804947 to your computer and use it in GitHub Desktop.
Save mjangda/804947 to your computer and use it in GitHub Desktop.
Disable post status notifications for Edit Flow.
<?php
add_action( 'ef_init', 'ef_x_kill_post_status_notifications' );
function ef_x_kill_post_status_notifications() {
global $edit_flow;
remove_action( 'transition_post_status', array( &$edit_flow->notifications, 'notification_status_change' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment