“空垃圾箱”按钮是否有动作钩?


17

当用户单击帖子的“空垃圾箱”按钮时,我想运行一个功能。就像是:

add_action('empty_trash','myFunction');
function myFunction(){
// My code
}

Answers:


16

我认为不存在一个,但是您可以使用以下内容创建自己的wpse_empty_trash

/**
 * Add a custom hook 'wpse_empty_trash'
 */
add_action( 'load-edit.php', function()
{
    add_action( 'before_delete_post', function ( $post_id )
    {
        if (
            'trash' === get_post_status( $post_id ) 
            && filter_input( INPUT_GET, 'delete_all' )
            && 1 === did_action( 'before_delete_post ' )
        )   
            do_action( 'wpse_empty_trash' );
    } );
} );

然后,您可以将其与代码一起使用。例:

add_action( 'wpse_empty_trash', 'myFunction' );
function myFunction() {
    // My code
}

希望您可以根据需要进行调整。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.