options_permalink_add_js()
Deprecated since 4.9.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Display JavaScript on the page.
No Hooks.
Returns
null. Nothing (null).
Usage
options_permalink_add_js();
Changelog
| Since 3.5.0 | Introduced. |
| Deprecated since | 4.9.0 |
options_permalink_add_js() options permalink add js code WP 7.0
<?php
function options_permalink_add_js() {
?>
<script>
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
}