After you save the feed. Edit it and look under options and you will see the post template function. Just enable it and put the above code in for the template.
It will only affect new posts and won't add it to any ones you may already have pulled in.
<?php the_content(); ?>
<?php $source = get_post_meta($post->ID, 'wpo_sourcepermalink', true);
$urlsource = '<a '.'href="'. $source .'"target="_blank">'.'Read More...'.'</a>';
echo $urlsource; ?>
Everybody post your link to your blog. I wanna take a look at how you all are doing. THen compare to my blog and me and specobkirbs will keep editing until we have the blog 99% like Techchuck or even better 100%
Think you change order here... in the sociable.php.. but have no time to checkdoes anyone know how I can change where sociable inserts its toolbar? i want it below related posts
// Load the post's data
$blogname = urlencode(get_bloginfo('name')." ".get_bloginfo('description'));
$post = $wp_query->post;
$excerpt = urlencode(strip_tags(strip_shortcodes($post->post_excerpt)));
if ($excerpt == "") {
$excerpt = urlencode(substr(strip_tags(strip_shortcodes($post->post_content)),0,250));
}
$excerpt = str_replace('+','%20',$excerpt);
$permalink = urlencode(get_permalink($post->ID));
$title = urlencode($post->post_title);
$title = str_replace('+','%20',$title);
$rss = urlencode(get_bloginfo('ref_url'));
$html .= "\n<div class=\"sociable\">\n";
$tagline = get_option("sociable_tagline");
if ($tagline != "") {
$html .= "<div class=\"sociable_tagline\">\n";
$html .= stripslashes($tagline);
$html .= "\n</div>";
}
$html .= "\n<ul>\n";
foreach($display as $sitename) {
// if they specify an unknown or inactive site, ignore it
if (!in_array($sitename, $active_sites))
continue;
$site = $sociable_known_sites[$sitename];
$url = $site['url'];
$url = str_replace('PERMALINK', $permalink, $url);
$url = str_replace('TITLE', $title, $url);
$url = str_replace('RSS', $rss, $url);
$url = str_replace('BLOGNAME', $blogname, $url);
$url = str_replace('EXCERPT', $excerpt, $url);
if (isset($site['description']) && $site['description'] != "") {
$description = $site['description'];
} else {
$description = $sitename;
}
$link = "<li>";
$link .= "<a rel=\"nofollow\"";
if (get_option('sociable_usetargetblank') && $site['url'] != 'javascript:window.print();') {
$link .= " target=\"_blank\"";
}
$link .= " href=\"$url\" title=\"$description\">";
$link .= "<img src=\"".$imagepath.$site['favicon']."\" title=\"$description\" alt=\"$description\" class=\"sociable-hovers";
if (isset($site['class']) && $site['class'])
$link .= " sociable_{$site['class']}";
$link .= "\" />";
$link .= "</a></li>";
$html .= "\t".apply_filters('sociable_link',$link)."\n";
}
$html .= "</ul>\n</div>\n";
return $html;
}
does anyone know how I can change where sociable inserts its toolbar? i want it below related posts
People should modify their blogs. I bet you everyones blogs here looks the same, Atleast change the backgrounds of yalls.
Second: How do you automatically add a link back to the site you are getting the rss feed from? For example on your blog it might say "Read the Original Article" which links back to the rss site. I would like to add this to my blog as well.
Thanks
thats what i have, but it puts it RIGHT at the end of the post rather than further down
<?php if (function_exists('sociable_html')) {
echo sociable_html();
} ?>
im not usin a plugin ive added the items using amazon data feeds you can add a complete store to your site using them and all items will link ot your affiliate id.First: What is the plugin for Amazon you are using?
i think people should make their stuff unique... the point is the learning experience so that you can modify it how you would like, not to just rip off some guys work that he worked hard to customize.