• Resolved Njualem

    (@njualem)


    I am looking for a plugin that can display a specific “Link Category” on the sidebar for a specific “Post Category” and the subsequent posts in that “Post Category” and also (if possible) to display these links at the bottom of each post in the specific “Post Category”.

    I will also welcome any coding ideas on modifying existing plugins to achieve this goal.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • display a specific “Link Category” on the sidebar for a specific “Post Category” and the subsequent posts in that “Post Category”

    If a ‘category’ view, display links with same category

    <?php
    if ( is_category() ) {
    $cat = get_query_var('cat');
    $category=get_category($cat);
    wp_list_bookmarks('category_name='.$category->cat_name); } ?>
    }
    ?>

    to display these links at the bottom of each post in the specific “Post Category”.

    Check tugbucket’s posts or look at a related post plugin

    Thread Starter Njualem

    (@njualem)

    Thanks Michael for your respond. I will implement the code your have given me as fast as possible.

    Thanks once more.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘To Display a Specific “Link Category” for a Specific “Post Category”’ is closed to new replies.