View Single Post
Old 2007-03-03, 12:40 AM   #17
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
Quote:
Originally Posted by ronnie View Post
Sounds like a great idea to me. So I am guessing some one would need link organizer to make it work?

You could always make a new table to store and fetch links, like a links script. Unless thats what your talking about anyway.

Wonder how many webmasters would do it? With no one to trade with..lol

I can see this could work with blog->LL also and visa versa.
No, you can use the link management part of WP. In fact, I still use a combination of both. This is a snippet of the code I am using:
Code:
<?php if (is_home()) 
{
        echo "<h2>Links</h2>";
        echo "<ul>";
        wp_get_linksbyname('walrus');
        echo "</ul>";
        echo "<ul>";
        wp_get_linksbyname('LL');
        echo "</ul>";
        echo "<ul>";
        echo implode ( "", file ( "http://www.pornfeedmaniac.com/bmlinks/more.php" ) );
        echo "</ul>";
} elseif (is_category('84')) {
echo "<h2>Links</h2>";
        echo "<ul>";
        echo implode ( "", file ( "http://www.pornfeedmaniac.com/bmlinks/butt.php" ) );
        echo "</ul>";
}
In the first part, I am defining what I want on my home page. As you can see, the wp_get_linksbyname() statements are calling specific categories I've set up with the WP links manager. The elseif selects the category ID which was created when I created the category. The rest is a call, to LO, but you could easily replace that with either the calls to specific link categories or a compeletely different script.

Clear as mud, I hope so, it's friday night and....well you know!
__________________
Naked Girlfriend Porn TGP
free partner account
walrus is offline   Reply With Quote