Top Google Search Results
- Plugin API/Filter Reference/post edit form tag « WordPress Codex
Plugin API/Filter Reference/post edit form tag. Applies to the <form> tag for the default post edit page (Which is used for pages and custom post types). It is at the ... - #18236 (Change hook 'post_edit_form_tag' from an action to a filter ...
Currently the file /wp-admin/edit-form-advanced.php uses a hook to allow for a plugin to add attributes to the <form> tag via the 'post_edit_form_tag' action. - post_edit_form_tag Wordpress hook details -- Adam Brown, BYU ...
post_edit_form_tag. Description. Allows you to append code to the form tag in the default post/page editor. This description was scraped automatically from the ... - WordPress Custom File Upload
Jul 7, 2011 ... add_action('post_edit_form_tag', 'post_edit_form_tag'); function post_edit_form_tag() { echo ' enctype="multipart/form-data"'; }. Next you need ...