edit_post hook
-
Trying to change post content submitted from the edit post form.
add_action('edit_post', 'myCustomFunction'); function myCustomFunction(){ //alter $_POST['content'] somehow before save, but how? }
The topic ‘edit_post hook’ is closed to new replies.