Advertisement
Guest User

Untitled

a guest
Oct 26th, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $args = array(
  2. 'category' => CURRENT_CATEGORY_ID,
  3. );
  4. $posts_to_change = get_posts( $args );
  5.  
  6. foreach ( $posts_to_change as $new_category_post ) {
  7. wp_set_post_categories( $new_category_post->ID, array(NEW_CATEGORY_ID) );
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement