• Orange

    (@leegrant)


    Hi there, I’m up to scratch on all for no (at least I think).

    I want to have my comment number clickable leading to comments page, I’ve tried this

    <a href=" <?php comments_link(); ?>" title="<?php comments_number('0', '1', 'more'); ?>"</a>

    but with no effect.

    Also I want to display my date like this. Any ideas please?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Orange

    (@leegrant)

    I’ve fixed the comments thing, but any help on the date please? and also ho can I make an image clickable to an rss feed?

    jacogriesel

    (@jacogriesel)

    The display of the date is a styling matter. Mostly. As far as the code goes, I suggest fiddling with:

    <?php echo date('l d F Y '); ?>

    For the blog RSS:

    <a href="<?php bloginfo('rss2_url'); ?>" title="Title goes here"><img src="<?php bloginfo('template_url'); ?>/images/meta/blogrss.png" /></a>

    For the comments RSS:

    <a href="<?php bloginfo('comments_rss2_url'); ?>" title="Title goes here"><img src="<?php bloginfo('template_url'); ?>/images/meta/commentrss.png" /></a>

    Hope that helps!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Few little things’ is closed to new replies.