Greenguy's Board


Go Back   Greenguy's Board > Blogs and Blogging
Register FAQ Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 2006-07-22, 03:59 PM   #1
karomesis
Are you sure this is the Sci-Fi Convention? It's full of nerds!
 
karomesis's Avatar
 
Join Date: Mar 2006
Location: pepperell,Massachusetts.
Posts: 264
Send a message via ICQ to karomesis
Displaying different link categories

Hey guys, I was wondering if anyone here has knowledge of how to display different link categories with different post categories?

I have 3 blogs that are interconnected on one main site, but I really want them to each have their own seperate links for obvious reasons.

any help is appreciated.
karomesis is offline   Reply With Quote
Old 2006-07-22, 11:37 PM   #2
virgohippy
Madness is like gravity. All it takes is a little... push.
 
virgohippy's Avatar
 
Join Date: Feb 2006
Location: California
Posts: 1,679
I don't have a solution, but I have a suggestion: Mention the blog script you're using.
__________________
~Warm and Fuzzy.
virgohippy is offline   Reply With Quote
Old 2006-07-23, 12:32 AM   #3
karomesis
Are you sure this is the Sci-Fi Convention? It's full of nerds!
 
karomesis's Avatar
 
Join Date: Mar 2006
Location: pepperell,Massachusetts.
Posts: 264
Send a message via ICQ to karomesis
my bad...WP.
karomesis is offline   Reply With Quote
Old 2006-07-23, 02:39 AM   #4
virgohippy
Madness is like gravity. All it takes is a little... push.
 
virgohippy's Avatar
 
Join Date: Feb 2006
Location: California
Posts: 1,679
No worries. WP is the standard... so I guess I shouldn't have bothered asking.
__________________
~Warm and Fuzzy.
virgohippy is offline   Reply With Quote
Old 2006-07-23, 03:14 PM   #5
ronnie
Wheither you think you can or you think you can't, Your right.
 
Join Date: Jun 2004
Location: midwest
Posts: 2,274
Send a message via ICQ to ronnie
I dont use wordress, so I'm no help.

ronnie.
ronnie is offline   Reply With Quote
Old 2006-07-23, 05:35 PM   #6
karomesis
Are you sure this is the Sci-Fi Convention? It's full of nerds!
 
karomesis's Avatar
 
Join Date: Mar 2006
Location: pepperell,Massachusetts.
Posts: 264
Send a message via ICQ to karomesis
Ronnie, is it possible with the blog software you use?
__________________
Become part of the future of pornography....promote the first stages of VIRTUAL REALITY|shocking|
karomesis is offline   Reply With Quote
Old 2006-07-24, 11:26 AM   #7
ronnie
Wheither you think you can or you think you can't, Your right.
 
Join Date: Jun 2004
Location: midwest
Posts: 2,274
Send a message via ICQ to ronnie
Honestly, I am not totally sure what you are asking. I've read it a couple times and I am still not sure, or I am just wacked this week..

I use movable type.

ronnie
ronnie is offline   Reply With Quote
Old 2006-07-24, 02:53 PM   #8
walrus
Oh no, I'm sweating like Roger Ebert
 
walrus's Avatar
 
Join Date: May 2005
Location: Los Angeles
Posts: 1,773
Send a message via ICQ to walrus Send a message via Yahoo to walrus
Basicly what he's trying to ask is if anyone knows if it is possible to display different groups of links depending upon the post category you are viewing.

I admit that I doubt it, I also wouldnt be surprised if it was possible to do.
__________________
Naked Girlfriend Porn TGP
free partner account
walrus is offline   Reply With Quote
Old 2006-07-24, 06:04 PM   #9
ronnie
Wheither you think you can or you think you can't, Your right.
 
Join Date: Jun 2004
Location: midwest
Posts: 2,274
Send a message via ICQ to ronnie
Oh, okay, boy I missed that one. Actually probably would'nt be hard to do with php and mysql. If you could just grab a variable then you could pull all the links you want from what ever catagory.

ronnie

Last edited by ronnie; 2006-07-24 at 06:06 PM..
ronnie is offline   Reply With Quote
Old 2006-07-24, 07:23 PM   #10
virgohippy
Madness is like gravity. All it takes is a little... push.
 
virgohippy's Avatar
 
Join Date: Feb 2006
Location: California
Posts: 1,679
I don't use WP, but is this the kind of thing you're looking for?

http://rudd-o.com/projects/wp-list-main-cats/

EDIT: For future reference, I found it here:

http://wp-plugins.net/
__________________
~Warm and Fuzzy.
virgohippy is offline   Reply With Quote
Old 2006-07-25, 01:12 AM   #11
karomesis
Are you sure this is the Sci-Fi Convention? It's full of nerds!
 
karomesis's Avatar
 
Join Date: Mar 2006
Location: pepperell,Massachusetts.
Posts: 264
Send a message via ICQ to karomesis
gracias amigo

I seem to be technically challenged to say the least, I'm still trying to figure out what a tag is|shocking|
__________________
Become part of the future of pornography....promote the first stages of VIRTUAL REALITY|shocking|
karomesis is offline   Reply With Quote
Old 2006-07-25, 01:33 AM   #12
virgohippy
Madness is like gravity. All it takes is a little... push.
 
virgohippy's Avatar
 
Join Date: Feb 2006
Location: California
Posts: 1,679
Quote:
Originally Posted by karomesis
I'm still trying to figure out what a tag is|shocking|
http://www.technorati.com/help/tags.html

I should've been born a hunting dog.
__________________
~Warm and Fuzzy.
virgohippy is offline   Reply With Quote
Old 2006-08-02, 02:16 PM   #13
walrus
Oh no, I'm sweating like Roger Ebert
 
walrus's Avatar
 
Join Date: May 2005
Location: Los Angeles
Posts: 1,773
Send a message via ICQ to walrus Send a message via Yahoo to walrus
I was checking around in the WP template tags today for somthing I want to do on one of my blogs and ran across your solution.

Lets say you have a site http://www.yoursite.com and you want to have different links on your home page than a couple of your category pages. Say you have a cams category and a teen category.

Make 3 link categories...one well call blogroll and it is your main index page links. One call cams and the other lets call teens.

Where you want the links to appear on your sidebar, add this:
Code:
<?php
if (is_category(cams)) {
        echo "<ul>";
        wp_get_linksbyname('cams'); 
        echo "</ul>";
} elseif (is_category(teens)) {
        echo "<ul>";
        wp_get_linksbyname('teens');
        echo "</ul>";
} else {
        echo "<ul>";
        wp_get_linksbyname('blogroll');
        echo "</ul>";
}
?>
When you do link exchanges anyone linking to your home page (http://www.yoursitename.com will be added to the blogroll category. Now depending on how permalinks is setup: anyone trading with your cams pages will be link to http://www.yoursitename.com/category/cams and you would add their site to the cam category trade, linking to teens would be http://www.yoursite.com/category/teens and their links would be added by you in the teens category.

Disclaimer: I haven't tested it and usually I fuck it up the first dozen or so times before I get it right so be prepared for a little trial and error.
__________________
Naked Girlfriend Porn TGP
free partner account
walrus is offline   Reply With Quote
Old 2006-08-02, 03:25 PM   #14
karomesis
Are you sure this is the Sci-Fi Convention? It's full of nerds!
 
karomesis's Avatar
 
Join Date: Mar 2006
Location: pepperell,Massachusetts.
Posts: 264
Send a message via ICQ to karomesis
Thanks for the help walrus

Although, I think I'll probably fuck up 50 times before I get it right.
__________________
Become part of the future of pornography....promote the first stages of VIRTUAL REALITY|shocking|
karomesis is offline   Reply With Quote
Old 2006-08-03, 12:00 PM   #15
ronnie
Wheither you think you can or you think you can't, Your right.
 
Join Date: Jun 2004
Location: midwest
Posts: 2,274
Send a message via ICQ to ronnie
php can be golden..

ronnie
ronnie is offline   Reply With Quote
Old 2006-08-03, 03:31 PM   #16
virgohippy
Madness is like gravity. All it takes is a little... push.
 
virgohippy's Avatar
 
Join Date: Feb 2006
Location: California
Posts: 1,679
Or it can be a real sun-of-a-bitch, and turn your whole site into a big picture of a polar bear covering his nose in the middle of a snow storm.



DON'T FORGET THE SEMI-COLONS!!!
__________________
~Warm and Fuzzy.
virgohippy is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 11:49 PM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc