Alright, I have a template that displays entries from multiple weblogs, each of which has a unique URL.
I got the permalinks working very easily by using the comment_url_title_auto_path. What is cool about that is that it links the permalinks to the correct URLs, even though they are different (one weblog’s permalinks go to http://www.gearlive.com/news/article/url_title, another to unboxing.gearlive.com/unbox/article/url_title, and the last to games.gearlive.com/playfeed/article/url_title). The comment_url_title_auto_path was a Godsend in this respect.
The difficulty I am having right now is linking to the categories of these different weblog entries. All the categories point to the same subdomains listed above for the respective weblogs, but there doesn’t seem to be the category equivalent of comment_url_title_auto_path. In the meantime, I have this, which I know is wrong (it only works right for the http://www.gearlive.com categories):
<div class="subtitle">Related: {categories backspace="7"} <a href="http://{path={template_group_name}/index}">{category_name}</a>, {/categories}</div>Is there a way to get category links to automatically go where they should? If not, is there different coding I can use to solve this issue? 😊