hi guys,
i am having trouble with the media silo too. followed the file
permission instructions, and have tried manually changing the file
permissions on the files folder. but nothing shows up in the admin
area where the images should be displayed.
regarding the tag variable question, i found the tag_slug variable
worked for me. here is a little snippet (thanks to arthus for getting
me going in the right direction) that shows the 5 most recent posts
tagged news (using it in the sidebar):
<?php
$array = array('limit' => '5', 'tag_slug' => 'news', 'status' =>
Post::status('published'));
foreach (Posts::get($array) as $post ) {
echo '<li><a href="' . $post->permalink . '" title="' . $post-
>title . '">' . $post->title_out . '</a></li>' . "\n"; }
?>
anyone have any ideas on how to get media silo working? using version
0.6
cheers
simon
http://www.blizzardboy.net/
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/habari-users
-~----------~----~----~----~------~----~------~--~---