You will see that many websites upload a digg button inside their publish content material. Some new customers merely open unmarried.php and upload the digg script which is able to motive a digg button to display on all weblog posts. But what if you need to show digg button on best particular posts? You can upload it manually on every publish when writing a publish, however that’s not the best manner. In this text we will be able to display you, how you’ll upload a digg button on particular posts through merely using Custom fields.
First open your unmarried.php and in finding a code that appears like this:
<?php if (have_posts()) : whilst (have_posts()) : the_post(); ?>
Replace it with:
<?php if (have_posts()) : whilst (have_posts()) : the_post(); // take a look at for digg button for unmarried web page $digg = get_post_meta($post->ID, 'Digg', $unmarried = true); ?>
Now you wish to have to upload the next code throughout the loop anyplace you favor:
<?php // if there may be a unmarried web page digg button if($digg !== '') { ?> <script src="http://digg.com/gear/diggthis.js" kind="textual content/javascript"></script> <?php } // finish if remark // if there may be no longer a digg button else { echo ''; } ?>
You might wrap it round with any styling that you need. Save the unmarried.php and add it to your theme folder.
Now when writing a publish if you need to upload a digg publish merely upload a customized box like proven in the display shot beneath:
Whenever you specify this tradition box, WordPress will show a digg button on your publish like this one:
Check out this situation (Live)