Posts Tagged ‘K2’

Updated to 2.4.bleeding(trunk)

Saturday, October 27th, 2007

I was going to update to 2.3.1, but I thought I’d see if the trunk was working as expected first, and it is.

It’s actually fairly easy to upgrade using subversion, so here’s what I did.

(more…)

How to edit the K2 theme so that your tags replace the categories

Monday, October 15th, 2007

Find the span class "entry-category"> in theloop.php.
Change <?php /* Categories */ printf(__('in ','k2_domain'), k2_nice_category(', ', __(' and ','k2_domain')) ); ?> to <?php /* Tags */ the_tags(__('in ','k2_domain')); ?>

I’m sure there’s a fancier way of doing this that doesn’t require the theme core files, but this is a relatively minor change.