kk4uga
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] No W3 Total Cache info in html codeNo, it does not go away.
However, disabling Minify solves the problem. So must be an issue with Minify??
Forum: Plugins
In reply to: All in One SEO and Opengraph Meta for Facebook like buttonSame issue here. Found this and it works:
<meta property="og:description" content="<?php echo get_post_meta($post->ID, '_aioseop_description', true); ?>" />
Forum: Fixing WordPress
In reply to: Is this code for related posts slowing down my site?Thanks. Would limiting the number of posts to “get” improve performance? Right now it’s unlimited, but at most it would pull 30-40 posts.
Forum: Fixing WordPress
In reply to: Is this code for related posts slowing down my site?The reason I am asking is because of this from the WordPress codex:
If you use query_posts within a template page, WordPress will have already executed the database query and retrieved the records by the time it gets to your template page (that’s how it knew which template page to serve up!). So when you over-ride the default query with query_posts(), you’re essentially throwing away the default query and its results and re-executing another query against the database.
This is not necessarily a problem, especially if you’re dealing with a smaller blog-based site. Developers of large sites with big databases and heavy visitor traffic may wish to consider alternatives, such as modifying the default request directly (before it’s called). The request filter can be used to achieve exactly this.
The ‘parse_query’ and the ‘pre_get_posts’ filters are also available to modify the internal $query object that is used to generate the SQL to query the database.
Forum: Fixing WordPress
In reply to: Is this code for related posts slowing down my site?Here is the link to the code:
Forum: Fixing WordPress
In reply to: Want to add related link & image to bottom of posts by Tag…Thanks.
How do I specify which tag and which image to pull in?
Forum: Plugins
In reply to: [W3 Total Cache] Minify is brokenI corrected mine by disabling CSS minify.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Pagination Does Not Work in NextGen GalleryI’m having this same issue right now. The pagination works fine when the gallery is not under a parent page. But when you place the gallery under a parent page in WP, it doesn’t work.
Does anyone have a solution?
Forum: Fixing WordPress
In reply to: Dedicated server has high number of zombie processes….Can someone look at this code and tell me if it might be creating this “zombie” problem?
Forum: Fixing WordPress
In reply to: Dedicated server has high number of zombie processes….Here is a link to the second code that was moderated:
https://wordpress.pastebin.com/72gy7Ak3
Any ideas on what could be causing the high number of zombies?
Thanks.
Forum: Fixing WordPress
In reply to: Need help adding list of posts by TAG….Thanks guys, that works. Appreciate the help as I am not a coder.
Forum: Fixing WordPress
In reply to: Need help adding list of posts by TAG….Thanks for the help.
MichaelH, that code works for me, but is there a way to only display one particular tag? Right now, they all show up which is way too many.
Forum: Fixing WordPress
In reply to: WordPress pages vs. non-WordPress pages…..Anyone?
Forum: Fixing WordPress
In reply to: WordPress pages vs. non-WordPress pages…..Thanks Shane, but unrelated to my question.
Forum: Fixing WordPress
In reply to: Need help with a mini-loop and categories….That worked! Thanks a lot!