Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Blog description from a specific blog


Brajesh Singh
Participant

@sbrajesh

if you know the blog id then you can use something of this kind

say you want to get description for blog id having id 7

<?php
$blog_id=7;//or what ever
$description=get_blog_option($blog_id,"blogdescription");
echo $description;//show the description
?>

Hope it helps

Skip to toolbar