Forums

[resolved] Sorting result of clicking on tag coud link (7 posts)

  1. mcgyver47
    Member
    Posted 7 months ago #

    Hi,
    I have a tag cloud working perfectly well.
    When clicking on a tag cloud link
    Result is displayed using tag - php template
    How can I sort this list of posts being displayed :
    - by date
    - title
    - or...
    Thanks for help
    Rgds

  2. keesiemeijer
    moderator
    Posted 7 months ago #

  3. mcgyver47
    Member
    Posted 7 months ago #

    Thanks for answer but how do I find out which tag ( from tag cloud) was clicked do to a new query and then sort them as instructed ?

  4. keesiemeijer
    moderator
    Posted 7 months ago #

    try it with something like this:

    global $query_string;
    query_posts( $query_string . '&orderby=title' );

    or

    $tag = get_query_var('tag');
    query_posts('tag='.$tag.'orderby=title');
  5. mcgyver47
    Member
    Posted 7 months ago #

    Thank you
    Exactly what I was looking for
    Regards from France

  6. keesiemeijer
    moderator
    Posted 7 months ago #

    You're welcome. I'm glad you got it resolved

  7. mcgyver47
    Member
    Posted 7 months ago #

    Actually I hadn't realized you could retrieve the tag with :
    $tag = get_query_var('tag');
    After that the problem is solved
    Thanks again

Reply

You must log in to post.

About this Topic

Tags