First open your single.php and find a code that looks like this:
php if (have_posts()) : while (have_posts()) : the_post(); ?>
Replace it with:
php if (have_posts()) : while (have_posts()) : the_post();
// check for digg button for single page
$digg = get_post_meta($post->ID, ‘Digg’, $single = true);
?>
Now you need to add the following code within the loop anywhere you like:
digg button
if($digg !== ”) { ?>
<?php } // end if statement
// if there’s not a digg button
else { echo ”; } ?>
You may wrap it around with any styling that you want. Save the single.php and upload it to your theme folder.
Now when writing a post if you want to add a digg post simply add a custom field like shown in the screen shot below:
Whenever you specify this custom field, WordPress will display a digg button on your post
View Comments
dami cha need more help