• Some blogs have two dirrerent areas on their sites. One “main” one for publishing articles, and another smaller one (ususally in a side column) that is being used to publish just a link and a few words – basicly stuff you don’t want to write a full essay on. How is this done? Look at how it’s used on Airbag so see what I mean: http://www.airbagindustries.com/index.php

    Is it two blogs that are being used or what? Cause they publish two different feeds for the two sections.

    Or could you do something similar with only one blog installed? Like one category for all those small posts with links and so on. How do you set something like that up in WordPress?

    Cheers

Viewing 5 replies - 1 through 5 (of 5 total)
  • Looks like a seperate plugin for something that is placed in a 3rd column

    Reckon you could look for a plugin like that ?

    Thread Starter fredrik

    (@fredrik)

    Yeah maybe. Never heard of a plugin like that – but i’ll see if I can find one.

    My thought was that if I dedicated a category for small posts it would be possible to show the posts from that category in it’s own column on the front page and not have those post show up in the “main” post area? Don’t care about having different feeds for them – one would do fine. Anyone knows if this is possible?

    Thread Starter fredrik

    (@fredrik)

    I’ve pretty much found what I’m looking for in the Codex in the advanced section on The Loop ( http://codex.wordpress.org/The_Loop )

    What I’ve done is to create a category for all the posts I want to display in a list of it’s own on the front page.

    The codex says that it’s possible to run The Loop several times on the same page. After the first Loop is finished in my index.php I’ve added another div and run The Loop again inside:

    // Get the last 10 posts in the Diversions category.
    <?php query_posts('category_name=Diversions&showposts=10'); ?>

    <?php while (have_posts()) : the_post(); ?>
    <?php the_content('Read the rest of this entry &raquo;'); ?>
    <?php endwhile;?>

    It all looks so nice and neat but I get the parse error
    Parse error: parse error, unexpected ‘:’ in /customers/apt47.com/apt47.com/httpd.www/dev_blog/wp-content/themes/apt47/index.php on line 51

    Which is this line <?php while (have_posts()) : the_post(); ?>

    Anyone a WordPress genius and can figure out what’s wrong?

    Thread Starter fredrik

    (@fredrik)

    Ok, no worries. I took the easy way and just took the data I need directly from the database. It’s not as nice and definately not as good for future updates.. but hell.. it works 🙂

    Thanks anyway.

    /Fredrik

    The alternative is to use Miniblog Plugin in the sidebar. It is work very well for me. Download from http://wordpress.org/support/topic.php?id=28639

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Two blogs and different feeds?’ is closed to new replies.