With WP 3.2, WordPress maybe has a new function to add Link-Quicktags to the editor. But I found an function to set defaults for the link-button:
Take a look at wplink.js Line 278.
setDefaultValues : function() {
// Set URL and description to defaults.
// Leave the new tab setting as-is.
inputs.url.val( 'http://' );
inputs.title.val( '' );
// Update save prompt.
inputs.submit.val( wpLinkL10n.save );
},
How is it possible to set the values for a custom value?
Is this possible and can you help me?
Thanks for an answer from an JavaScript Expert.
Also an small example for change the url in link-button to use the url from installed blog. Use print JS in footer, not an include from js file via
wp_enqueue_script()
– ist faster vor development, specially for this small requirement, but not so on standard and fine, how the example from the other answer.Put the following in your
functions.php
; better is a custom plugin.Check the path to the js file you want to include above. Then place the following code in the above mentioned js file.
You can change the default values now.