Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $cat = get_queried_object();
  2. $cat_id = $cat->cat_ID;
  3. $args = array(
  4. 'post_type' => 'post',
  5. 'type' => 'yearly',
  6. 'cat'=>$cat_id,
  7. 'echo' => 0
  8. );
  9. $list = wp_get_archives($args);
  10. echo "<ul'>$list</ul>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement