wpseek.com
A WordPress-centric search engine for devs and theme authors
options_permalink_add_js is deprecated since version 4.9.0!
options_permalink_add_js › WordPress Function
Since3.5.0
Deprecated4.9.0
› options_permalink_add_js ( No parameters )
Defined at: |
|
Codex: |
Display JavaScript on the page.
Related Functions: options_general_add_js, options_reading_add_js, options_discussion_add_js, post_permalink, the_permalink_rss
Source
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 }