shoffy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: SQL code to bulk remove tag referencesHey Gabriel, thanks for the help, but I think your path should be:
wp_admin/includes/template.phpNot saying you’re wrong, just saying that’s where I found mine. 🙂
Forum: Fixing WordPress
In reply to: Bloated rewrite rules in option tableSo the “fix” is to change your permalink structure?
I’ve actually used the category/postname combo for a while, didn’t know it was a performance issue. Good to know.
Forum: Fixing WordPress
In reply to: Slow Performance – Initial Page Load DelayI did figure out my problem, but it was self inflicted. In a nutshell, I was using query_posts when i should have been using get_posts to create multiple loops on my homepage. This caused multiple loops to be created which slowed things down tremendously.
That was the biggest problem. I used a plugin called WP Tuner to help me see which areas were slowest and after some sleuthing was able to put the issues to bed.
I also noticed that though I love all the great plugins out there for WP, not everyone takes the time to optimize them. 😉 So systematically deactivating them and using WP tuner helped there alot too.
No issues w/ a slow admin.
Forum: Plugins
In reply to: Replace Specific WordPress FunctionForum: Fixing WordPress
In reply to: Can’t Print $wpdb->queries@apljdi thanks!
I did try that to no avail. So strange.
I’ve abandoned my pursuit as I found a plugin that doesn’t seem to have this problem associated with it.
Thanks again for you help!
Forum: Fixing WordPress
In reply to: query_posts PerformanceTo add to the above… I found that by removing unnecessary parameters from query_posts() that it does speed things up.
Sweet.
Now I’m thinking about is what happens if you include an invalid parameter. (i.e. exclude a category ID that doesn’t exist in the database)
Forum: Fixing WordPress
In reply to: Can’t Print $wpdb->queries@apljdi thank you!
Did comment out various areas and found that the print_r($wpdb->queries) is where things break. It’s just difficult to know why w/o any PHP errors.
Additional thoughts?