0
Auto-Hilighting WordPress Post Shortlink Input Field
Add this to your WP posts to provide an input field with the posts shortlink as the value, that highlights on focus.
Great for easily copying the shortlink to paste elsewhere. It is used on the single post pages of every blog post on this site.
<?php if (function_exists('wp_get_shortlink')) { ?>
<span class="shortlink">Shortlink: <input type='text' value='<?php echo wp_get_shortlink(get_the_ID()); ?>' onclick='this.focus(); this.select();' class="shortlinkinput" /> </span>
<?php } ?>
Levels: Syntax: HTML, JavaScript, PHP





