Event(hook) save_post
-
I have such code in functions.php
add_action( 'save_post', 'add_review_db', 10, 3 ); function add_review_db( $post_ID, $post, $update ) { //my code }
If I added new post from admin panel, this function executing. But if I submit form
[user-submitted-posts]
functionadd_review_db
does not executing, why? And how I can use hooks in with this plugin?
- The topic ‘Event(hook) save_post’ is closed to new replies.