wpseek.com
WordPress开发者和主题制作者的搜索引擎



post_form_autocomplete_off › WordPress Function

Since4.0.0
已弃用4.6.0
post_form_autocomplete_off ( 没有参数 )
链接:
定义在:
文档:

Disables autocomplete on the 'post' form (Add/Edit Post screens) for WebKit browsers, as they disregard the autocomplete setting on the editor textarea. That can break the editor when the user navigates to it with the browser's Back button. See #28037

Replaced with wp_page_reload_on_back_button_js() that also fixes this problem.


源码

function post_form_autocomplete_off() {
	global $is_safari, $is_chrome;

	_deprecated_function( __FUNCTION__, '4.6.0' );

	if ( $is_safari || $is_chrome ) {
		echo ' autocomplete="off"';
	}
}