Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Leandro Severino
12,674 Pointsbest way to deal with wordpress caching issues
May I know what are your best ideas on how to deal with wordpress' caching issues? Thank you.
2 Answers

Stanley Thijssen
5,299 PointsWhen I have caching issues I mostly try the following things:
- Change the permalinks to something else and save and change it back again.
- Change templates and back again.
- Turn off Plugins that might give caching issues.
- If that doesnt work I try the function flush_rewrite_rules(); more info about that here: https://codex.wordpress.org/Function_Reference/flush_rewrite_rules

Jacob Mishkin
23,117 PointsAll you need to do is Clear your browser cache. Also look at the site in incognito if using chrome, and you will see the changes.
Leandro Severino
12,674 PointsLeandro Severino
12,674 PointsGreat! For a quick fix, I just switch to another template(just like your suggestion) and I was wondering what are other efficient ways on dealing with the problem. I'll definitely try to research about the 1st and last suggestion on your list. Thanks!