Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <div class="prev-product"><?php previous_post_link('%link','prev'); ?> </div>
  2. <div class="next-product"><?php next_post_link( '%link','next'); ?>
  3.  
  4. <div class="prev-product"><?php previous_post_link('%link','prev', TRUE); ?> </div>
  5. <div class="next-product"><?php next_post_link( '%link','next', TRUE); ?></div>
  6.  
  7. function save_product_cat(){
  8. global $post;
  9. $terms = get_the_terms( $post->ID, 'product_cat' );
  10. wp_set_post_categories( $post->ID, $terms );
  11. wp_set_object_terms( $post->ID, $terms->slug, 'category');
  12. }
  13.  
  14. add_action('save_post', 'save_product_cat');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement