function get_links()
 {
     /* Content for the middle of choose content page  */
     global $current_theme_path, $base_url;
     $links_arr = array();
     $links_arr[0] = "Blog";
     $link_names = SBMicroContent::get_content_links();
     $i = 1;
     foreach ($link_names as $key => $value) {
         $links_arr[$i] = $value['name'];
         $i++;
     }
     return $links_arr;
 }