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:
»
deutsch
Other blogs I’m reading and that I can recommend – for space reasons, not all are shown in the sidebar, but here instead:
Local Pingback: Auf ein Wörtle :: cimddwc1 2008-06-19 at 10:57
Local Pingback: Changes :: cimddwc2 2009-01-21 at 13:41
Local Pingback: Ein ♥ für Blogs :: cimddwc3 2009-04-21 at 17:49
Gilly4 2009-12-18 at 1:10
24 Comments
quote
Twitter: gillyberlin
Sagemal, wie erstellst du diese Seite inkl. der Screenshots? Von Hand oder mit einem Plugin?
cimddwc 2009-12-18 at 9:28
5258 Comments
quote
Twitter: cimddwc
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
floatund so.