• How can you give the Asides a title, like “Short Snippets”

    i know that in Rust Asides you can:

    <?php ShowRustAsides(“<center><h2>Short Snippets</h2></center>”); ?>

    is there a way to do that with the Kubrick code…would it be in this section:

    <?php if (in_category(21) && !$single) { ?>
    <ul class=”asides”>
    <li id=”p<?php the_ID(); ?>”><?php echo wptexturize($post->post_content); echo ‘ ‘; comments_popup_link(‘(0)’, ‘(1)’, ‘(%)’)?> <?php edit_post_link(‘(e)’); ?>

    <?php } else { ?>

    Appreciate the help!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Are you trying to display the title of your ‘aside’ post? If so, just stick the_title() at the start of the <li>, like so:

    <li id="p<?php the_ID(); ?>"><h2><?php the_title(); ?></h2>
    <?php echo wptexturize($post->post_content); echo ' ';

    Thread Starter poons15

    (@poons15)

    Nope..not what I am looking for..in fact I wanted an overall title…but in fact that won’t work it seems because I was thinking that if I had more than one aside it would append itself to the top or bottom like Rust’s Asides..but that’s isn’t the case.

    Trying to now get the smilieys working with this..

    Thanks for the help

    I love asides, the idea of an incosequential, essentially unstyled entry is very cool. to add a title couldn’t you just use h2 to fake it?

    but for a more robust sub blog, have you thought about using miniblog instead?

    I use this trick.

    You can see it in action in my sidebar at http://skippy.net/; and see the entire list of previous asides at my links page.

    Thread Starter poons15

    (@poons15)

    hey skippy

    thanks for the ideas. I really want it in the middle..not in the sidebar..

    happen to know how to get the smileys to work in Matt’s Asides?

    poons15: no, I don’t know how. Sorry.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Matt’s Asides — How do you give it a header/title?’ is closed to new replies.