By level02 on
I'm looking for a way to pull Blog Information from the bloginfo module in a single page or block.
Something like:
Blog Title1 by Username1
Description of the blog goes here.
Blog Title2 by Username2
Description of the blog goes here.
Blog Title3 by Username3
Description of the blog goes here.
...
Where the Blog title is a link to the blog. I see in the bloginfo table created by the module there are four fields: uid, title, description and format.
So how to make this page. Something like:
psuedocode
get bloginfo foreach uid display <a href="linkto $url">'$title'</a> . 'by' . $username<br />
php print '$description'/psuedocode
Or would it be easier to create a custom CCK profile-type and and then pull the info from there as a view?