Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 21st, 2012  |  syntax: None  |  size: 0.55 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. $categories = get_the_category();
  3. $temp = array();
  4. foreach($categories as $category) {
  5.         if ($category->category_parent == 0) continue;
  6.         $temp[] = str_replace('-', '', $category->name);
  7. }
  8. $cat_comma_seperated = implode(", ", $temp);
  9. ?>
  10.  
  11.         <abbr class="published" title="<?php the_time('c') ?>"><?php printf( __('Posted on %s', 'arras'), get_the_time(get_option('date_format')) ) ?></abbr> | <?php printf( __('%s', 'arras'), $cat_comma_seperated ) ?></abbr> | <a href="<?php comments_link() ?>"><?php comments_number() ?></a>