This function has been deprecated.
options_permalink_add_js()
Display JavaScript on the page.
Source
File: wp-admin/includes/deprecated.php
function options_permalink_add_js() {
?>
<script type="text/javascript">
jQuery(document).ready(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
}
Changelog
Version | Description |
---|---|
WP-4.9.0 | This function has been deprecated. |
WP-3.5.0 | Introduced. This function has been deprecated. |