Description
Filters the value of the post password.
Usage
apply_filters( 'wp_data_sync_post_password', $post_password );
Parameters
$post_password | string | The post password |
Code Example
add_filter( 'wp_data_sync_post_password', function( $post_password ) {
//Do cool stuff here!!
return $post_password;
), 10, 1 );
Contact us if you need a code example for this hook. We are happy to review your request.