npr / nprapi-wordpress

Access the NPR API from within WordPress. This repository is no longer being maintained. See the README for more information.
GNU General Public License v2.0
13 stars 30 forks source link

wrong args on add_action for npr_delete function #17

Open benlk opened 8 years ago

benlk commented 8 years ago

in push_story.php:

add_action( 'trash_post', 'npr_delete', 10, 2 );

But the function npr_delete only accepts one argument https://github.com/npr/WP-DS-NPR-API/blob/master/push_story.php#L62 :

/**
 *
 * Inform the NPR API that a post needs to be deleted.
 * @param unknown_type $post_ID
 */
function npr_delete ( $post_ID ) {