"; if (has_filter('itx_single_meta_'.$meta)) apply_filters ('itx_single_meta_'.$meta); else { switch ($meta){ case ('commentcount') : echo ''; echo ''; comments_number('0','1', '%'); echo ''; break; case ('date') : the_time(get_option('date_format')); break; case ('author') : echo 'by '; the_author_link(); break; case ('categories') : echo ' : '; the_category(', '); break; case ('tags') : if (get_the_tags()){ echo ' : '; the_tags(''); } break; case ('author_info') : $user_url=get_the_author_meta('user_url'); $uurl=empty($user_url)?'':'
'.str_replace('http://', '', $user_url).'
'; echo '

About the author

'. ''.strip_tags(get_the_author_meta('description')).''. get_avatar(get_the_author_meta('email'), 48).$uurl. '
'; break; } } echo ''; } } /** * Function check wether meta is shown. * * @param string The position/location of the meta. * @return bool meta is active. */ function itx_is_active_single_meta($pos){ if (is_page()) $meta=itx_get_option('single','page_meta'); else $meta=itx_get_option('single','post_meta'); if (!empty($meta[$pos])) return true; else return false; } ?>