How to automatically create an index of child sites at the root url for a multisite installation?
For create the links to your child sites use this function elenco_sotto_siti(){ global $wpdb; $blogs = $wpdb->get_results( $wpdb->prepare(“SELECT * FROM $wpdb->blogs WHERE public=”1″ AND archived=’0′ AND mature=”0” AND spam=’0′ AND deleted=’0′ ORDER BY blog_id “),ARRAY_A ); return $blogs; } For question 2 and 3, i use the option framework plugin, and i grab the description … Read more