• I’ve been trying to find a way to display my archive list in alpha order but from only one category.

    I tried the following… didn’t work

    <?php wp_get_archives('type=alpha&cat=4');?>

    I installed a plugin – Archives for a category WordPress plugin
    didn’t work.

    Any suggestions? Seems like it should be easy, but I’m not finding the solution. Thanks!

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

    You can use ‘getarchives_where’ and ‘getarchives_join’ filters from wp_get_archives function.

    Do a join on ‘term_relationships’ and ‘term_taxonomy’, then in the where clause filter by the category/term id.

    Thread Starter janjan32

    (@janjan32)

    Hi Arrakis83,
    Thanks for your reply, but I’m a little lost. How would the code look?

    Thread Starter janjan32

    (@janjan32)

    Hi Arrakis83,
    Thanks for your reply, but I’m a little lost. How would the code look?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Need to Display archive list from one category’ is closed to new replies.