• Hi,

    Is there a plugin or hack about “category related links” like in php-nuke? Let me give example from my wp site: http://www.primeheadlines.com when you press my tv shows category I want the right bar to show “tv shows related links” or when you press tv networks I want the wp to show tv networks related links on the right bar (grey part) of the page.

    Any opinions?
    Thank you,
    Leo

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter 19leo19

    (@19leo19)

    Does anyone have opinions?

    I don’t know of a plugin, but a very basic hack would be to check which category page you’re on, and display your links based on that. An example:

    <?php if($cat == 1) { ?>

    ~links for category 1 go here ~

    <?php } elseif($cat == 2) { ?>

    ~links for category 2 go here ~

    <?php } elseif($cat == 3) { ?>

    ~links for category 3 go here ~

    <?php } ?>

    there is a related posts plugin, however it’s not set up to pick out just those in the same category, atleast not the last time i checked. I apologize for not having the url handy

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Category Related Links?’ is closed to new replies.