AnsPress_Hooks::delete_subscriptions( integer $postid )

Description #

Delete subscriptions.

Parameters #

  • $postid
    integer (Required) Post ID.

Changelog #

VersionDescription
unknown Introducedunknown Introduced
4.1.5Introduced.

Source #

File: includes/hooks.php

999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
public static function delete_subscriptions( $postid ) {
    $_post = get_post( $postid );
 
    if ( 'question' === $_post->post_type ) {
        // Delete question subscriptions.
        ap_delete_subscribers( array(
            'subs_event'  => 'question',
            'subs_ref_id' => $postid,
        ) );
    }
 
    if ( 'answer' === $_post->post_type ) {
        // Delete question subscriptions.
        ap_delete_subscribers( array(
            'subs_event'  => 'answer_' . $_post->post_parent,
        ) );
    }
}

Leave a Reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Add your comment