' );
}
/**
* Convert a post's tags array into a usable list of links
*
* @param array $array The tags array from a Post object
* @return string The HTML of the linked tags
*/
public function filter_post_tags_out($array)
{
if ( ! is_array( $array ) ) {
$array = array ( $array );
}
$fn = create_function('$a,$b', 'return "' . implode('', $array) . '
';
return $out;
}
}