将以下内容放入functions.php
; 更好的是定制插件。
add_action( \'admin_print_scripts-post.php\', \'wpse22643_overwrite_wplinks\' );
add_action( \'admin_print_scripts-post-new.php\', \'wpse22643_overwrite_wplinks\' );
/**
* enqueue script
*/
function wpse22643_overwrite_wplinks( $hook ) {
// register is important, that other plugins will change or deactivate this
wp_register_script(
\'overwrite-wplinks\',
get_stylesheet_directory_uri() . \'/js/overwrite-wplinks.js\',
array( \'jquery\' ),
\'\',
TRUE
);
wp_enqueue_script( \'overwrite-wplinks\' );
}
检查上面要包含的js文件的路径。然后将以下代码放在上述js文件中。
( function( $ ) {
if ( typeof wpLink == \'undefined\' )
return;
wpLink.setDefaultValues = function () {
$(\'#url-field\').val(\'http://example.com\');
$(\'#link-title-field\').val(\'This works :)\');
$(\'#wp-link-submit\').val( \'Use this link\' );
};
} )( jQuery );
现在可以更改默认值。