函数原型
options_permalink_add_js()
函数描述
Display JavaScript on the page.
是否弃用
Warning: This function has been deprecated.
函数参数
无
函数返回值
无
函数位置
File: wp-admin/includes/deprecated.php.
函数源码
function options_permalink_add_js() {
?>
<script type="text/javascript">
jQuery( function() {
jQuery('.permalink-structure input:radio').change(function() {
if ( 'custom' == this.value )
return;
jQuery('#permalink_structure').val( this.value );
});
jQuery( '#permalink_structure' ).on( 'click input', function() {
jQuery( '#custom_selection' ).prop( 'checked', true );
});
} );
</script>
<?php
}
源码链接
变更日志
| Version | Description |
|---|---|
| 4.9.0 | This function has been deprecated. |
| 3.5.0 | Introduced. |

