Last active
July 30, 2020 17:15
-
-
Save ariffsetiawan/40a57c33c225e40d3f6302fe389b16ba to your computer and use it in GitHub Desktop.
Fix category and comment's count after WordPress import. Refer to https://www.wpbeginner.com/wp-tutorials/how-to-fix-category-and-comment-count-after-wordpress-import/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include("wp-config.php"); | |
$conn = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME); | |
if (!$conn) { die('Could not connect: ' . mysqli_error()); } | |
$result = mysqli_query($conn, "SELECT term_taxonomy_id FROM ".$table_prefix."term_taxonomy"); | |
while ($row = mysqli_fetch_array($result)) { | |
$term_taxonomy_id = $row['term_taxonomy_id']; | |
echo "term_taxonomy_id: ".$term_taxonomy_id." count = "; | |
$countresult = mysqli_query($conn, "SELECT count(*) FROM ".$table_prefix."term_relationships WHERE term_taxonomy_id = '$term_taxonomy_id'"); | |
$countarray = mysqli_fetch_array($countresult); | |
$count = $countarray[0]; | |
echo $count."<br />"; | |
mysqli_query($conn, "UPDATE ".$table_prefix."term_taxonomy SET count = '$count' WHERE term_taxonomy_id = '$term_taxonomy_id'"); | |
} | |
$result = mysqli_query($conn, "SELECT ID FROM ".$table_prefix."posts"); | |
while ($row = mysqli_fetch_array($result)) { | |
$post_id = $row['ID']; | |
echo "post_id: ".$post_id." count = "; | |
$countresult = mysqli_query($conn, "SELECT count(*) FROM ".$table_prefix."comments WHERE comment_post_ID = '$post_id' AND comment_approved = 1"); | |
$countarray = mysqli_fetch_array($countresult); | |
$count = $countarray[0]; | |
echo $count."<br />"; | |
mysqli_query($conn, "UPDATE ".$table_prefix."posts SET comment_count = '$count' WHERE ID = '$post_id'"); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment