Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created May 25, 2012 14:41
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 billerickson/2788490 to your computer and use it in GitHub Desktop.
Save billerickson/2788490 to your computer and use it in GitHub Desktop.
Old Post Notification - Change Post Types
<?php
/**
* Add Article as Post Type for Old Post Notification
*
* @param array $post_types
* @return array
*/
function be_post_types_for_notification( $post_types ) {
$post_types[] = 'article';
return $post_types;
}
add_filter( 'old_post_notification_post_types', 'be_post_types_for_notification' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment