Kann man im Utimate Tag Warrior irgendwie einstellen, dass Tags in der Tagwolke nicht automatisch ihre Groß- bzw. Kleinschreibung erhalten?
Das Plug-In macht es erstens falsch und zweitens sieht es mistig aus, finde ich. :)
Ultimate Tag Warrior - Groß u. Kleinschreibung
-
-
- Gerade eben
- Anzeige
Hallo!
Wenn du gerade an deiner Website arbeitest oder dein aktuelles Hosting überdenkst: Wir betreiben mit NetzLiving eine Hosting-Plattform, die speziell auf Performance, Sicherheit und einfache Verwaltung ausgelegt ist.
- ✔️ Schnelle Ladezeiten (optimiert für WordPress & Co.)
- ✔️ Deutsche Server & DSGVO-konform
- ✔️ Persönlicher Support (kein 0815-Ticket-System)
-
keine ahnung? niemand?
-
Geht es nur um die Tagwolke? Dann kannst du evtl. was mit CSS machen:
text-transform: Großschreibung: CSS-Referenz auf CSS 4 You - The Finest in Stylesheets
-
hm, danke für die hilfe aber hat mir bisher nicht geholfen. hier ist mal der code von der achiv-seite, wo die tag-wolke dargestellt wird:
PHP
Alles anzeigen<?php /* Template Name: Archives (Do Not Use Manually) */ ?> <?php /* Counts the posts, comments and categories on your blog */ $numposts = $wpdb->get_var("SELECT COUNT(1) FROM $wpdb->posts WHERE post_status = 'publish' AND post_type != 'page'"); if (0 < $numposts) $numposts = number_format($numposts); $numcomms = $wpdb->get_var("SELECT COUNT(1) FROM $wpdb->comments WHERE comment_approved = '1'"); if (0 < $numcomms) $numcomms = number_format($numcomms); $numcats = $wpdb->get_var("SELECT COUNT(1) FROM $wpdb->categories"); if (0 < $numcats) $numcats = number_format($numcats); ?> <?php get_header(); ?> <div class="content"> <div id="primary"> <div id="current-content" class="hfeed"> <?php the_post(); ?> <div id="post-<?php the_ID(); ?>" class="<?php k2_post_class(); ?>"> <div class="page-head"> <h2><a href="<?php the_permalink(); ?>" rel="bookmark" title='<?php printf( __('Permanent Link to "%s"','k2_domain'), wp_specialchars(strip_tags(the_title('', '', false)),1) ); ?>'><?php the_title(); ?></a></h2> <?php edit_post_link(__('Edit','k2_domain'), '<span class="entry-edit">','</span>'); ?> </div> <div class="entry-content"> <p><?php printf(__('This is the frontpage of the %1$s archives. Currently the archives are spanning %2$s posts and %3$s comments, contained within the meager confines of %4$s categories. Through here, you will be able to move down into the archives by way of time or category. If you are looking for something specific, perhaps you should try the search on the sidebar.','k2_domain'), get_bloginfo('name'), $numposts, $numcomms, $numcats); ?></p> <?php if (function_exists('af_ela_super_archive')) { ?> <h3><?php _e('Live Archives','k2_domain'); ?></h3> <p><?php printf(__('This is a \'live archive\', which allows you to \'dig\' into the %s repository in a fast and efficient way without having to reload this page as you explore.','k2_domain'), get_bloginfo('name')); ?> </p> <div id="livearchives"> <?php af_ela_super_archive('num_posts_by_cat=50&truncate_title_length=40&hide_pingbacks_and_trackbacks=1&num_entries=1&num_comments=1&number_text=<span>%</span>&comment_text=<span>%</span>&selected_text='.urlencode('')); ?> <div class="clear"></div> </div> <?php } else { ?> <h3><?php _e('Browse by Month','k2_domain'); ?></h3> <ul class="archive-list"> <?php wp_get_archives('show_post_count=1'); ?> </ul> <br class="clear" /> <h3><?php _e('Browse by Category','k2_domain'); ?></h3> <ul class="archive-list"> <?php wp_list_cats('hierarchical=0&optioncount=1'); ?> </ul> <br class="clear" /> <?php } // End ELA Check ?> <?php if (function_exists('UTW_ShowWeightedTagSetAlphabetical')) { ?> <h3><?php _e('Tag Cloud','k2_domain'); ?></h3> <p><?php printf(__('The following is a list of the tags used at %s, colored and \'weighed\' in relation to their relative usage.','k2_domain'), get_bloginfo('name')); ?></p> <?php UTW_ShowWeightedTagSetAlphabetical("coloredsizedtagcloud"); ?> <?php } ?> </div> <!-- .entry-content --> </div> <!-- #post-ID --> </div> <!-- #current-content .hfeed --> <div id="dynamic-content"></div> </div> <!-- #primary --> <?php get_sidebar(); ?> </div> <!-- .content --> <?php get_footer(); ?>und hier ist das einzige, was ich in meinem style.css zum Thema Tags und dem Plug-In gefunden habe:
Jetzt mitmachen!
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!