You appear to be a bot. Output may be restricted
Description
This just returns the blog IDs not the titles
Usage
oik_clone_get_blog_list();
Parameters
Returns
voidSource
File name: oik-clone/admin/oik-clone-ms.phpLines:
1 to 10 of 10
function oik_clone_get_blog_list() { $blogs = array(); if ( !function_exists( "bw_get_blog_list" ) ) { oik_require2( "shortcodes/oik-blogs.php", "oik-ms" ); } if ( function_exists( "bw_get_blog_list" ) ) { $blogs = bw_assoc( bw_get_blog_list()); } return( $blogs ); }View on GitHub