Recent Topics

1 Feb 12, 2004 06:51    

How to have 2 blogrolls? Don't ask what for... :)

2 Feb 12, 2004 07:36

Either look at multiblogs.php, or copy /skins/_blogroll.php to some other file, and duplicate the contents.

How does that work? :)

-Vegar

3 Feb 12, 2004 18:43

mg, I'd do it like this, if you're using skins:

1) Set the $blogroll_blog in your stub file or template, or anywhere else, really. (You could use a "_vars.php" page to store this and any other skin variables that you feel like storing.)

2) Also set a $blogroll_blog2 variable, with the blogid of the second blogroll blog.

3) In the include call to _blogroll.php in your skin's _main.php, do it like this:

include(dirname(__FILE__).'/_blogroll.php');
$brb=$blogroll_blog;
$blogroll_blog=$blogroll_blog2;
include(dirname(__FILE__).'/_blogroll.php');
$blogroll_blog=$brb;

You could also create a separate "_blogroll2.php" page, and then set up the formatting different for the second one.

In http://isaac.beigetower.org/index.php?skin=blogger, I basically use the blog 1 (all blogs) as a second blogroll of sorts, since that gives you a list of all the most recent articles. (The links are different, though, since they go to the permalink rather than to bloginfo('url'), and you can customize all that by the way that you build the page that's being included.)

If you use templates, then do like Vegar says, and check out the Multiblogs example.

4 Feb 17, 2004 05:53

Sorry for so late reply... :)

This is already solved. Thanx both of you. It was easyier than I thought. The problem was that I forgot to enable blogroll. ;)


Form is loading...