Jaja, dat kann passiern...
Beiträge von finky
-
-
Probiert mal das aus. Ich hab Folgendes im Einsatz:
PHP
Alles anzeigen<?php /* Set the $order variable to whatever you want to sort the authors' list on. You can use any users table column name; examples are: 'ID', 'user_nicename', 'user_login', 'user_url', 'display_name', and 'dateYMDhour' (registration date). */ ?> <?php global $wpdb, $table_prefix; // set global WP vars needed for script $order = 'display_name'; // set order for users table query $user_ids = $wpdb->get_col("SELECT ID FROM $wpdb->users ORDER BY $order"); // query users foreach($user_ids as $user_id) : // start authors' profile "loop" $user = get_userdata($user_id); // retrieve author (i.e. user) details $level = $table_prefix . 'user_level'; // set 'user_level' usermeta meta_key record $user->user_level = $user->$level; // assign 'user_level' property to $users $role = $table_prefix . 'capabilities'; // set 'role' usermeta table meta_key record $user->role = array_keys($user->$role); // assign 'role' property to $user $user->role = $user->role[0]; // make sure $user->role is not an array ?> <?php /* This is the authors' profile 'loop'. It displays info from the profile for every author, along with a few bits of other author- related data. Feel free to add, subtract, change layout; whatever you'd like. These 'tags' will display "publically accessable" user info; what is displayed by each is hopefully self-explanatory: <?php echo $user->aim; ?> <?php echo $user->description; ?> <?php echo $user->display_name; ?> <?php echo $user->first_name; ?> <?php echo $user->jabber; ?> <?php echo $user->icq; ?> <?php echo $user->ID; ?> <?php echo $user->last_name; ?> <?php echo $user->msn; ?> <?php echo $user->nickname; ?> <?php echo $user->role; ?> <?php echo $user->user_email; ?> <?php echo $user->user_level; ?> <?php echo $user->user_login; ?> <?php echo $user->user_nicename; ?> <?php echo $user->user_registered; ?> <?php echo $user->user_url; ?> <?php echo $user->yim; ?> */ ?> <? /* if(('admin' != $user->user_login) && ($user->wp_user_level > 0)) : Tests for accounts that are not 'admin' or above 'subscriber' role. To display the admin account, comment out or remove the first 'if' line and uncomment the one right after it. The additional variations for the if statement listed below can be used if you want to check whether the user is assigned the role of 'author', or author/contributor. Default roles you can work with here are: subscriber contributor author editor administrator If you're using a plugin that lets you create custom roles, these should work with it as well. Finally, if you want to display absolutely every user on your blog, use something like: if( $user->user_login ) : */ ?> <?php if( ( $user->user_login) && ($user->user_level > 0) ) : // if( $user->user_level > 0 ) : // show all users above the role of 'subscriber' // if( $user->role == 'author' ) : // show only users with a role of 'author' // if( ($user->role == 'author') || ($user->role == 'contributor') ) : // show users with role of 'author' or 'contributor' ?> <h3 id="user-<?php echo $user->ID; ?>" class="author-profile"><?php echo $user->display_name; ?></h3> <?php /* Tests for and displays an author image. IMG element is assigned the CSS class 'author-image'. Change $image_dir to directory used to store your author images; start from blog root (example: 'wp-content/images'). Filename is based on user_nicename (ex: user login 'Kaf Oseo' = 'kaf-oseo') and 'jpg' file extension. Change $image_file the $author_image variables if you want to use another user profile element (such as user_nickname) or image type. */ ?> <?php $image_dir = 'images'; // directory where author images reside $image_file = $user->user_nicename; // format for image name $image_ext = 'jpg'; // author image extension $image_path = trim($image_dir, '/') . '/' . $image_file . '.' . $image_ext; if(file_exists(ABSPATH . $image_path)) : $author_image = get_bloginfo('home') . '/' . $image_path; ?> <img class="user-image" src="<?php echo $author_image; ?>" alt="<?php echo $user->display_name; ?>" title="<?php echo $user->display_name; ?>" /> <?php endif; ?> <?php /* if($user->description) Tests for and displays user description (i.e. Profile). */ ?> <?php if($user->description) : ?> <p> <strong>Profil:</strong> <br /> <?php echo $user->description; ?> </p> <?php endif; ?> <p> <?php /* if(get_usernumposts($user->ID) > 0) Tests for and displays post count and link to posts for author. */ ?> <?php if(get_usernumposts($user->ID) > 0) : ?> Geschriebene Artikel: <a href="<?php get_author_link(true, $user->ID, "$user->user_nicename"); ?>"><?php echo get_usernumposts($user->ID); ?></a> <br /> <?php endif; ?> <?php /* if($user->user_email) Tests for and displays email; uses WP's antispambot() function to encode the address so it's displayed in browser but not read by emailbots. */ ?> <!-- <?php if($user->user_email) : ?> Email address: <a href="mailto:<?php echo antispambot($user->user_email, 1); ?>"><?php echo antispambot($user->user_email); ?></a> <br /> <?php endif; ?> --> <?php /* if($user->user_url && !('http://' == $user->user_url)) Tests for and displays web site url if one exists and isn't just a "http://" with no actual url. */ ?> <?php if($user->user_url && !('http://' == $user->user_url)) : ?> Eigene Webseite: <a href="<?php echo $user->user_url; ?>" target="_blank"><?php echo $user->user_url; ?></a><br /> <?php endif; ?> </p> <?php endif; // end of admin and user_level test endforeach; // end of authors' profile 'loop' ?>Das Ganze müsst ihr als Template anlegen.
-
Plugin benutzen :mrgreen:
-
Schönes Portraitfoto. Irgendwie passend zum Thema.
Du musst ihm sagen, dass Du ne Liste willst. Schau mal im WordPress Codex
-
Du hast das mit dem Link zum Phänomen nicht kapiert, oder?
Hier der Umlaut html code für Templates, nachdem ich keine Ahnung habe, was Du willst:
ä = ä
ü = ü
ö = öEin zweiter Tipp für den WP-Editor: Hast Du mal bei Einstellungen --> Lesen den Zeichensatz überprüft? Nimm mal UTF-8 !!
-
Wie wär's mit ein bisschen klasse (=class) clear ? :mrgreen:
-
Poste bitte ein Link zum Phänomen !!
-
Geht's bitte noch ungenauer :confused:
Welches Theme benutzt Du? Poste mal nen Link zum Phänomen. -
Wie wäre es, wenn Du einfach die index-extra.php im Ordner /admin änderst?
Lösche einfach alle Inhalte und ersetze sie durch deine eigenen :mrgreen: -
Aber andererseits ist die ungenehmigte Ausgabe von fremdem Content als eigenen Content als Contentklau anzusehen.
-
Ich komm einfach nicht an den korrekten Downloadlink für das Jsbata Theme.
Kann mir einer den korrekten Link posten?http://jsbox.net/download/Jsbata1_1.zip funktioniert nämlich nicht! -
Mir fällt das in letzter Zeit bei Wordpress Themes immer öfter auf, dass wichtige Bedienelemente unter den Content geklüdert werden.
Beim nächsten Theme mach ich mal ein Menü oberhalb :mrgreen:.
-
Das rel="sidebar" ist unabsichtlich mitkopiert worden. Es wurde von der Nextgen-gallery generiert. Ich wollte einfach nur zeigen, wie Bilder dargestellt werden. Ganz ohne irgendwelche Hintergedanken :mrgreen: oder übrige Codeschnipsel.
-
Wofür sollte den das rel="sidebar" gut sein?
Das war einfach nur per Copy&Paste eingefügt aus meiner Gravatar-Galerie -
Hab rel="sidebar" entfernt. Jetzt alles ok?
-
Das mit dem Lesezeichen kann ich nicht nachvollziehen. Seltsam ...
-
Mahlzeit! Irgendwelche Meinungen?

-
Mein neuestes Theme heißt Brown Blog: Es besitzt gleich zwei (!) Widget-fähige Sidebars und ist 100% XHTML Valide.
Zur ausführlichen Vorstellung: WordPress Zubehör » Blog Archive » Neues Theme: Brown Blog -
Die Welt ist grausam. Da hilft nur ein Blick in deine style.css
-
Dann such dir ein Mathe/SPAM Plugin dafür.
Was macht 3+4 ?
WordPress Plugin Database