Re: Wordpress Multiple blogs
On the subject of WPMU.
I did my first Mu install with the help of the guys in the back room, the read me file is scary.
So, what I would like to do is hard code in some links of my own into the sidebar or footer or. But I'm not a coder and whatever I try, wherever I place code, it looks like carp.
I was able to get the Buy me a Beer plugin to work and look good, but text Links are killing me. I guess I can do it with widgets but they are not hard coded into my templates and I do not want the Mu bloggers to take them out, i.e. that will be how I get paid.
I am using Mu Templates, this what I have working right now. Is there a way to hard code a Text Widget in place?
My mind is mush, I could use some public or private help please.
< ?php buymebeer_sidebar(); ?>
<div id="sidebar">
<div id="searchdiv">
<form id="searchform" method="get" action="/index.php">
<input type="text" name="s" id="s" size="20"/>
<input name="sbutt" type="submit" value="Find" alt="Submit" />
</form></div>
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar() ) : ?>
<ul>
<a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><img src="http://www.feedburner.com/fb/images/pub/feed-icon32x32.png"></a>
</ul>
<h2><?php _e('Categories');?></h2>
<ul>
<?php wp_list_cats(); ?>
</ul>
<h2><?php _e('Monthly Archives');?></h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<?php endif; ?>
</div>
|