Force wordpress to display page with same url structure as categories
Force wordpress to display page with same url structure as categories
Force wordpress to display page with same url structure as categories
One Specific Category To Permalink
Overwrite YoastSEO meta-tags with another page’s [closed]
You are correct in your thinking that because the loop evaluates after the header you will not be able to get the contents of the loop there. The easiest way to do this is probably with jQuery. Something like this: <script type=”text/javascript”> $(document).ready(function() { document.title=”blah”; }); </script> Place this code in your loop, and the … Read more
Google knows what these are – you do not need to worry.
Two separate parts to consider: comments / trackbacks and archive pages. If you don’t enable comments and trackbacks, no links will exist for them, thus a 404 or redirect won’t be necessary. You can’t link to something that isn’t there 🙂 As for the archive pages, WP will create those whether you want them or … Read more
As the errors tell you it is caused by badly written code. What you can do: Ask the qtranslate developer to fix these issues, file a proper bug report and add the errors to it. Then wait for an update.
I would suggest not using the hash bang urls. Consider PJAX: https://github.com/defunkt/jquery-pjax It does partial page loads to speed things up and gracefully degrades for users with JavaScript disabled and search bots. There is even a little library for making using PJAX in themes a bit easier (example).
wp_title() is filterable so there could be another plugin or most likely your theme already adding a filter. Have tried checking the force rewrite in the plugin options? If that doesn’t work you need to hunt down what else is adding the filter and remove it. If it’s your theme look in functions.php for add_filter(‘wp_title’, … Read more
I just tried it with this code and it all worked as it should: <?php if ( is_home() ) : ?> <meta name=”description” content=”Your home page meta description” /> <?php else : ?> <meta name=”description” content=”Your non-homepage meta description” /> <?php endif; ?> You want to be sure there’s not a space between <? and … Read more