Definition:
function get_blogaddress_by_id( $blog_id ) {}
Get a full blog URL, given a blog id.
Parameters
- int $blog_id: Blog ID
Source code
function get_blogaddress_by_id( $blog_id ) { $bloginfo = get_blog_details( (int) $blog_id, false ); // only get bare details! return esc_url( 'http://' . $bloginfo->domain . $bloginfo->path ); }
1196
No comments yet... Be the first to leave a reply!