options_permalink_add_js

函数


options_permalink_add_js ( No parameters )
定义位置
  • wp-admin/includes/deprecated.php
    , line 1507
引入
3.5.0
弃用
4.9.0

在页面上显示JavaScript。

function options_permalink_add_js() {
	?>
	
		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 );
			});
		} );
	<?php }