The form is generated in file wp-admin/edit-form-advanced.php
. The relevant code starts at line 410 (WP version 4.0.1). Inside the <form>
tag an action is fired: <?php do_action( 'post_edit_form_tag', $post ); ?>
so it should be easy to use this action by hooking some small function to it from functions.php:
function post_form_novaidate() {
echo ' novalidate="novalidate" ';
}
add_action( 'post_edit_form_tag', 'post_form_novaidate' );
Didn’t test, but should work.
Related Posts:
- add_filter the_content str_replace after shortcode
- Upload Image in a WordPress page using PHP
- My form action url is being prepended with a directory that does not exists
- How to store data from multiple forms using ajax and php
- Why Won’t My Inputs in a form with a Get method work together?
- Input data from email form not going to JSON file
- How to get the value of input hidden html from text editor to custom page template?
- Login to wordpress by clicking a link and specifying usernaname and password in url
- Search WordPress using static html page
- How to execute html code inside php?
- How to add post meta in while loop?
- WordPressUser Submission Form
- Custom forms with HTML
- Cascading dropdown select search based on Parent Page & Child Page
- HTML Form Question
- wordpress form action page not found
- Custom HTML form using PHP – help with ajax/username validation
- How can I process a form submission from an HTTP POST request?
- Post + form + action + results on the same page
- Ajax call return 404
- How to remove ?wp-mce-4103-20162941
- Customize position of social icons in upme plugin [closed]
- How to pre populate a form field with a link of a current user’s author profile?
- parts of url disappear when using # inside href=”” [closed]
- Settings API callback function inserts html quotes from nowhere
- How to insert HTML/JavaScript form into WordPress page? [closed]
- Different post styles depending on category
- How create a Shortcode with hover and complex options
- How do I remove the product thumbnail link from a specific div in Woocommerce? [closed]
- Dot is not added at the end of href
- WordPress Multiple Navigation bars
- Position banner to right of logo in header – messed up my header file
- Commenting out unwated CSS/scripts in HTML with PHP
- Show success or error messages in Ajax response to WordPress custom registration form
- Styling my own password protected page, how to deal with wrong password?
- Contact form won’t submit
- wp_mail file attachment not being placed in upload folder?
- How to separate HTML and WordPress files
- Add .htm extention to a custom taxonomy
- Search Query: how to construct a search string from two select elements?
- Auto 301 to full post permalink? (using : /archive/%post_id% to %post_name% )
- Databases – Submitting data from inputs to database [closed]
- How to show a ‘correct’ message after submit a form?
- How do I add a custom css to all posts without affecting homepage css? [closed]
- db converts decimal number wrong
- Form Security: nonce vs. jQuery
- Make PHP work with HTML tags
- WordPress admin-ajax.php 400 bad request
- Noscript not working as it should in wordpress site
- Show latest posts in a plain HTML website custom widget [closed]
- How to convert select to HTML with PHP tags inside of it [closed]
- Is this spyware on my site or a real Java update?
- Syntax error when I try to insert my loop into an unordered list? [closed]
- Ajax contact form return 0
- Trying do build a contact form
- How to make modifications only to certain elements of an HTML string on the server-side?
- “operation successful” message
- Wrapping a Sidebar within
- User register hook is not working in woocomerce register form
- Hide HTML element (by class or ID) with PHP
- Add Codepen animation as Preloader to WordPress
- Path for php file for inserting data through html form
- Function returns text instead of html [closed]
- Printing HTML codes
- Widget back end radio button issue
- HTML escaping data with ajax requests
- How i can get post data from database when i am getting post id from url in wordpress
- How to retrieve the data from the sever and displaying it in a page?
- php within html within php
- How to remove coupon dropdown feature
- Add data-id attribute to child page links
- Add shortcode in my div
- How to put a form with php code into a variable or shortcode?
- Can a page contain php code?
- WordPress plug-in for dynamic download link?
- HTML table attributes ignored
- How to send form data from WordPress (Meta Box) to an OData service?
- php esc_html_e with an html link inside not working
- Add html link in functions.php files of the theme
- Using ob_start and ob_get_clean with wordpress shortcode
- How to edit HTML of my website on WordPress? [closed]
- WordPress wp-admin redirect and exception
- What is the alternative code to if (isset ($_POST) && !empty ($_POST) to avoid warnings?
- WordPress shortcode returns the data before
- How to remove the h6 tag for the entry-category Class
- Override user-edit.php to design own profile page
- Shortcode to embed Edit Account form not working
- wp_insert_post() with HTML tags using PHP
- How to rename woocommerce-billing-fields
- Form Submission Not Working In Custom Theme
- Prevent redirect to wp-login.php
- PHP contact form not redirecting [closed]
- Creating an image from a custom field
- How to Schedule Cronjobs for start of every month and year
- Where can I find the inline-css of my theme header?
- Capture form data in one function and use it in another function (same file)
- Handling PHP/HTML inside the output of a shortcode function
- Make textarea required. Help [closed]
- How to display success message correctly and delete it when the page is refreshed
- WordPress forms submissions and PHP files