WordPress:WPMU List New Blogs Widget

来自站长百科
Xxf3325讨论 | 贡献2008年9月25日 (四) 10:04的版本 (新页面: (untested) <pre> <?php function widget_list_newest_blogs($args) { extract($args); if(function_exists(fimii_wpmu_newest_blogs)) { echo $before_widget; ...)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航、​ 搜索

(untested)

 <?php
 function widget_list_newest_blogs($args) {
        extract($args);

        if(function_exists(fimii_wpmu_newest_blogs)) {
                 echo $before_widget;

                 echo $before_title . 'Recently Created Blogs' . $after_title;
                        echo "<ul>\n";
                        fimii_wpmu_newest_blogs(5);
                        echo "</ul>\n";
                 echo $after_widget;
        } else {
                echo "Error - function list_all_wpmu_blogs not found";
        }
 }
 register_sidebar_widget('List Newest Blogs', 'widget_list_newest_blogs');
 ?>