» deutsch deutsch

Complete Blogroll

Other blogs I’m reading and that I can recommend – for space reasons, not all are shown in the sidebar, but here instead:

German Blogs (49)

German Science/Skepticism Blogs (13)

English Blogs (9)

My Sites (5)

You can make it, roll with it, baby
When this world turns its back on you
Hang in and do that sweet thing you do

Steve Winwood, "Roll With It"

2 Comments
3 Trackbacks

  1. 1
  2. 2
  3. 3
  4. 4

    Sagemal, wie erstellst du diese Seite inkl. der Screenshots? Von Hand oder mit einem Plugin?

    • Von Hand automatisch. :) Eine Anmeldung bei Websnapr.com für die Screenshots und ein bisschen PHP:

      function ag_one_complete_blogroll ($catid, $headline) {
      	global $wpdb;
      	$links = $wpdb->get_results(
      	   "SELECT link_url, link_name, link_description, link_id
      		FROM $wpdb->links, $wpdb->term_relationships, $wpdb->term_taxonomy
      		WHERE object_id = link_id
      			AND $wpdb->term_taxonomy.term_id = $catid
      			AND $wpdb->term_taxonomy.term_taxonomy_id = $wpdb->term_relationships.term_taxonomy_id
      			AND link_visible = 'Y'
      		ORDER BY link_name ASC");
      	if ($links) {
      		echo '<h4>' . apply_filters('link_category', $headline ) . " <small>(".count($links).")</small></h4>\n\t".
      			"<ul class=\"full-blogroll-t\">\n";
      		foreach ($links as $link) {
      			echo '<li>'.
      			'<a href="'.$link->link_url.'" title="'.$link->link_description.'" class="noicon">'.
      			'<img src="http://images.websnapr.com/?size=T&key=[API-Key]&url='.$link->link_url.'" width="90" heigh="70" alt=" " />'.
      			' <br/>'.$link->link_name.'</a></li>'."\n";
      		}
      		echo "</ul>\n<div style=\"clear:both;\"> </div>\n";
      	}
      }
      

      Und das nötige CSS dazu, zwecks float und so.

Leave a Reply


Your email won't be published nor shared.