Need help with major category and permalink re-organization
The canonical code within WordPress should actually already redirect those old posts to the new posts automatically. Have you tested that?
The canonical code within WordPress should actually already redirect those old posts to the new posts automatically. Have you tested that?
Why should you get redirected to the 404 page if you display an author archive without posts? This isn’t the default behavior of WordPress. For example, if you go to the following URL: http://example.com/{permalink_base}/author/{author_name} WordPress calls the author.php template inside your theme folder. There you have a loop which will return all posts of the … Read more
There is nothing you can do, the % symbol is not a neutral character and whatever 2 characters immediatly follow it are used to represent a character. This is called percent encoding. http://en.wikipedia.org/wiki/Percent-encoding For example, to encode a % you would use %25. Thus the answer is: No, it is not possible to fix this … Read more
WordPress doesn’t deeplink to any php file for the front end. Instead, everything is passed throug the url as a query, like so http://your-blog-url.com?p=123. If you wanted to change that behaviour, you could edit your permalink structure in multiple ways. Just go to settings->permalinks (i have no idea what that is in czech, but its … Read more
Seems like you’re not the first one having this problem, you might want to check WordPress permalinks Yahoo hosting(no .htaccess allowed)
You should change the slug for the taxonomy. But it seems that you are trying to create a archive? Then you should create a new template file with the taxonomy name instead. But then you are loosing the ability to add a description to the page.
if you’re trying to make the news serve as a homepage you should use the Site address (URL) in the WordPress general setting options. and of course you’ll getting an 404 error page since the news/ in your permalink serve as a directory which is refer to your server directory that not connected with the … Read more
It’s not correct solving of issue and it’s not a bug. Here is explanation why it happens: “Pagination is calculated before you get to the template file that runs query_posts. The proper way to alter posts_per_page conditionally is to use the pre_get_posts hook to modify the main query.” https://wordpress.stackexchange.com/a/42063/17177 I found one implementation “pre_get_posts” that … Read more
It looks like you’re using Nginx which is very likely your issue. Nginx has a great writeup on what you need to do to with WordPress: http://wiki.nginx.org/Wordpress Other useful resources: https://stackoverflow.com/questions/3695387/nginx-404-not-found-page-for-permalinks https://stackoverflow.com/questions/3255446/wordpress-3-0-nginx-permalink-404-problem http://wordpress.org/extend/plugins/nginx-compatibility/other_notes/ Let me know if this works! Cheers~
Apologies, I find this a little bit a non-issue as it states clearly everywhere that WPML works 100% when you use a permalinks structure of day and name (http://domain.com/2012/02/07/sample-post/). If this is something you cannot accept, then you’s better come to terms with the fact that WPML most likely is not going to work 100% … Read more