Skip to content

Instantly share code, notes, and snippets.

@kstover
Created August 13, 2015 19: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 kstover/a824ab83ce728dc0c1c7 to your computer and use it in GitHub Desktop.
Save kstover/a824ab83ce728dc0c1c7 to your computer and use it in GitHub Desktop.
<?php
function my_custom_nf_action( $types ) {
$types['my_action'] = PATH_TO_MY_ACTION_CLASS_FILE;
return $types;
}
add_filter( 'nf_notification_types', 'my_custom_nf_action' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment