• Resolved jkma

    (@jkma)


    Hi!excellent plugin.
    I am building a site with 2.500-3.000 categories agregated from feeds.
    The fact is that each feed has different categories,so as i am not a coder and can not map them to my categories programmatially
    i decided to use your plugin and group them to about 250 groups.

    So i dont know the way to display each cat group to a seperate page.

    I think if i had an example of a group link i could manage this,by making pages and link them to each group.
    Except you have another way more easy ,as i told you i am not a coder but can put ready snippets

    Thanks you very much

    http://wordpress.org/plugins/tag-groups/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    could maybe this example help you? This would actually not make one page per group, but it would display all categories of the same group for the given category.

    Or you create one page (probably need a new page template) for the groups and put into the code of that page something like:

    echo tag_groups_cloud( array( 'show_tabs' => 0 , 'include' => (int)$_GET['group_id']) );

    so that you can simply call that page per url ending with …&group_id=12 for example. Just an idea, haven’t tried it.

    Thread Starter jkma

    (@jkma)

    Thank you!i tryed makiing the page template but it didnt work!
    It shows the term group cloud as expected but does not echo the group_id
    May be wrong code from me?
    Must i put something in it?

    I just tried it on a blog and here it works.

    Have you tried different values for group_id to see if the cloud changes? (… and of course ?group_id=12, not ampersand if this is the only parameter 😉 )

    You could replace it with

    echo (int)$_GET['group_id']

    to test if the query arrives at its destination.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Group link’ is closed to new replies.