Skip to content

Instantly share code, notes, and snippets.

@cyberhobo
Last active February 16, 2016 21:50
Show Gist options
  • Save cyberhobo/6cc66f659aca6452087d to your computer and use it in GitHub Desktop.
Save cyberhobo/6cc66f659aca6452087d to your computer and use it in GitHub Desktop.
<?php
function postmatic_multiauthor_remove_single_filter() {
if ( ! class_exists( 'Postmatic_Multi_Author' ) ) {
return;
}
remove_filter(
'prompt/subscribe_widget_object',
array( Postmatic_Multi_Author::get_instance(), 'filter_subscribe_widget_object' )
);
}
add_action( 'init', 'postmatic_multiauthor_remove_single_filter', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment