Can anyone tell me how to access my 'www.mydomain/blog/tag/whatever' pages from 'www.mydomain'? I can do this for my categories and I can access the tag cloud associated with a particular category, but I can't seem to figure out how to make the translation to doing same for accessing tags. FYI, I'm using the following code for doing this for categories (I found it somewhere on the web and it works great):
<?
$cAt="cat=1&numberposts=10&order=DESC&orderby=post_date";
require('blog/wp-blog-header.php');
function parseObjectToArray($object)
{
$array = array();
if (is_object($object))
{
$array = get_object_vars($object);
}
return $array;
}
$posts = get_posts($cAt);
foreach ($posts as $post) : start_wp();
$num = count($posts);
$i=0;
while ($i<$num)
{
$a = parseObjectToArray($posts[$i]);
$excerpt[$i]=$a['post_excerpt'];
$title2[$i]=$a['post_title'];
$title[$i]=$a['post_name'];
$date[$i]=$a['post_date'];
$i++;
}
endforeach;
?>
The blog I need help with is www.birthdaypartygameslady.com.