Do you want to create a text field with option to copy and paste text? While there’s probably a plugin for this, we have created a quick code snippet that you can use to shortlink trick and display a functionable text field in WordPress.
Instructions:
All you have to do is add this code to your theme’s single.php file:
<?php if (function_exists('wp_get_shortlink')) { ?> <div><span class="post-shortlink">Shortlink: <input type='text' value='<?php echo wp_get_shortlink(get_the_ID()); ?>' onclick='this.focus(); this.select();' /> </span></div> <?php } ?>
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: 8 best WordPress review plugins to boost online revenue and 11 best WordPress quiz plugins.
Comments Leave a Reply