Deal Widget for Wordpress MU

by Kishore on February 1, 2010

I created a widget to display ads related to the posts on my deals blog. The purpose of this widget is to display my affiliate links on all the blogs sidebar

image

function kish_get_deals() {
	global $blog_id;
	$current_blog=$blog_id;
	$dealblogid=8;
	switch_to_blog($dealblogid);
	global $post;
	$myposts = get_posts('numberposts=5&orderby=rand');
	?>
<h4 class="widget">Deals - Check it out</h4>
<div style="margin: 5px;background: none transparent scroll repeat 0% 0%;padding: 5px">
	<?php
	foreach($myposts as $post) :
	   setup_postdata($post);
	?>
<div style="margin-top: 3px">
	<li><a href="<?php editable_post_meta($post->ID, " target="_blank">"><?php editable_post_meta($post->ID, "dtitle"); ?></a>

<?php editable_post_meta($post->ID, "ddesc"); ?>

<?php editable_post_meta($post->ID, "durl"); ?><a title="> ¶</a>

</li>
</div>
<?php endforeach;?></div>
<?php switch_to_blog($current_blog);
}

You need to manually add the post_meta fields (custom fields) for those particular blog posts. As I am using the front end editor, I have used the different function, you can change that to get_post_meta function instead. You can add this to your sidebar and if you are using thesis theme, add it to your custom functions.php

Possibly Interesting Posts

Wordpress MU 2.9.1.1 Upgrade Error : Yesterday I upgraded my Wordpress MU installation to version 2.9.1.1 which has some fixes that I had..[](0)
5 Hacks that Will Challenge Obama's Cyber-Security Plans : President Barack Obama has made cyber-security a priority since he took office in January. A month ..[](1)
Freshen Your Fridge with Citrus Peels and Salt [Food Hacks] : We all know about keeping a box of baking soda in the fridge, but the TipNut blog suggests a citru..[](1)
Rubina dad unhappy with govt home : AGE CORRESPONDENT Mumbai May 30: Slumdog Millionaire child-actor Rubina’s father Rafiq Quereshi ..[](0)
Rejected by Apple, Palm teams with Amazon : You know the foolish game of cat and mouse Palm has been playing with Apple? The one where Palm hack..[](1)

Leave a Comment

Previous post:

Next post: