' . $more . ''; } add_filter('the_content_more_link', 'aplotis_wrap_more_link'); /** * Customize 'Recent Posts' widget output. */ function aplotis_add_span_cat_count($links) { $links = str_replace(' (', ' (', $links); $links = str_replace(')', ')', $links); return $links; } add_filter('wp_list_categories', 'aplotis_add_span_cat_count'); /** * Customize 'Tags' widget output. */ function aplotis_custom_tag_cloud_widget($args) { $args['largest'] = 13; //largest tag $args['smallest'] = 13; //smallest tag $args['unit'] = 'px'; //tag font unit return $args; } add_filter( 'widget_tag_cloud_args', 'aplotis_custom_tag_cloud_widget' ); ?>