Created
May 25, 2012 14:41
-
-
Save billerickson/2788490 to your computer and use it in GitHub Desktop.
Old Post Notification - Change Post Types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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