I noticed when I was importing the WordPress XML file to another blog the wp_term_taxonomy
table counted wrong and didn’t display some categories as a result of that.
Is there a way for me to recount the count column in wp_term_taxonomy
.
I noticed when I was importing the WordPress XML file to another blog the wp_term_taxonomy
table counted wrong and didn’t display some categories as a result of that.
Is there a way for me to recount the count column in wp_term_taxonomy
.
Comments are closed.
I solved this problem by calling
wp_update_term_count_now()
each time the importer adds or updates terms inprocess_posts()
.