Is there a save_post
hook for custom post types?
Example: save_my_post_type
I know there is publish_my_post_type
but I’m looking for a save hook.
Is there a save_post
hook for custom post types?
Example: save_my_post_type
I know there is publish_my_post_type
but I’m looking for a save hook.
You must be logged in to post a comment.
the hook is the same
save_post
just make sure its your post type ex:New solution, as of WP 3.7:
save_post_{$post_type}
See the note on the codex page
call function my_func() whene publish(save) special post type
call function my_func() whene publish(save) all post type (post, page, product, …)