GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Wordpress plugin to put links in certain post categories? (https://gfy.com/showthread.php?t=1005418)

BSleazy 01-10-2011 11:58 AM

Wordpress plugin to put links in certain post categories?
 
Anyone ever see one that does this? I haven't been able to find one.

fris 01-10-2011 12:45 PM

do you mean like below the post ?

BSleazy 01-10-2011 01:01 PM

Quote:

Originally Posted by fris (Post 17833750)
do you mean like below the post ?

No. Say I have 20 different niche categories that I assign different posts too. I want to be to do link trades on the niche category pages.

BSleazy 01-10-2011 01:06 PM

I'm really surprised there isn't a plugin to do this(as far as I know). One that when you add a link, it lets you select what category you want the link to show up in.

fris 01-10-2011 01:10 PM

on the post page, you could write a function so it only displays the links in the posts category. prob a 5 or 6 line deal

BSleazy 01-10-2011 01:15 PM

Alright cool. I'll see if I can figure that out. Haven't taught myself much php yet.

Django 01-10-2011 01:44 PM

AdSense Manager

fris 01-10-2011 02:37 PM

Quote:

Originally Posted by BCyber (Post 17833853)
Alright cool. I'll see if I can figure that out. Haven't taught myself much php yet.

assuming you have a link category called amateurs, and a post category called amateurs

Code:

function show_links()
{
    global $post;
    $cat = get_the_category($post->ID);
    $check = $cat[0]->cat_name;
    $links = get_bookmarks('category_name=$check&orderby=rand');
    foreach($links as $link) {
        echo "<a href='$link->link_url'>$link->link_name</a>";
    }
}

maybe somelike like this?

not sure i havent tested it.

FlexxAeon 01-10-2011 02:41 PM

pretty easy to do custom. i've done something similar using the custom fields


All times are GMT -7. The time now is 05:18 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123