1 2 3 4 5 6 7 8 9 10 11 12 13
<?php /** * Delete the property value from the database. * * @param string $type * @param string $slug * @param int $post_id */ function papi_action_delete_value( $type, $slug, $post_id = 0 ) { do_action( 'papi/delete_value/' . $type, $slug, $post_id ); }