The rewrite-rules tag has no wiki summary.
0
votes
2answers
238 views
Old blog/ and blog/feed/ URLs not working after moving blog to top-level via .htaccess
For a long time I served my blog from http://www.murrayc.com/blog/, with the wordpress installation in /home/murrayc/murrayc.com/blog/. Now I've moved it to http://www.murrayc.com/, without moving the ...
0
votes
1answer
211 views
How to redirect image attachment to its original post
I'm making a slider that is getting images from attachments in the post. I am trying to rewrite the url for the post so that if someone pastes the direct url to the attachment, it'll go the post ...
0
votes
0answers
11 views
Make only one CPT available by slug
I did a lot of research until I figured out how to remove the slug from a custom post type. I used the method described in this post here.
So I have RewriteRule ^bereiche/(.+)$ /$1 [R=301] in my ...
1
vote
0answers
113 views
Move wp-content htacess
I notice that when I rename the wp-content and plugins folders http://codex.wordpress.org/Editing_wp-config.php#Moving_wp-content my multisite network htacess still references wp-content: see this ...
1
vote
2answers
34 views
Rewrite url for custom post type
I'm using WPML plugin to translate my site.
I have a custom post type called "vinos" and I use this args:
$args = array(
'labels' => $labels,
'hierarchical' => false,
...
1
vote
1answer
35 views
Solved - How to prevent hierarchical permalinks while keeping nested organization?
I have a domain www.example.com with WordPress and 100+ pages. Something like this;
Page 1
Child Page 1
Child Child Page 1 and so on..
URLs accordingly are:
www.example.com/page-1
...
0
votes
0answers
9 views
Rewrite rules for using taxonomy term in custom post type URL [duplicate]
I'm trying to change the urls of single 'places' (a custom post type) to direct to /%taxonomy-term%/%place-name%/ instead of /place/%place-name%/
The below function changes the links correctly:
...
0
votes
3answers
147 views
Pagination: /tags/tag_name/?paged=2 gives a 404 error
I need to paginate an archive page. Pagination works perfectly fine for everything except tag/category archives. Basically if I use /tags/tag_name/?paged=2 it gives me a 404 error. But if I use ...
0
votes
0answers
37 views
htaccess problem not being able to overwrite previous rules
so guys, what i need to do is:
whenever someone ask for this url:
dev.site.com/noticias/id/tittle-for-the-news
( dev.site.com/noticias/([0-9]+)/([A-Za-z0-9-]+)/ )
it needs to get this:
...
1
vote
1answer
161 views
Need to add rewrite rule that adds in additional information about the post to url
A have a post type for venues which have the attributes title, state, and suburb. Currently using the default WordPress permalinks I get the following format:
mysite.com/venue/{title}
However, I ...
0
votes
0answers
24 views
Multiple taxonomy (category) filters
I would like to add advanced filtration to my wp website.
E.g.:
- you can filter cars by "fuel type", "purpose", "color", "brand/make"...
- I would like to get intersection of results in one page.
...
1
vote
1answer
40 views
Pre-Populate $wp_query settings with custom rewrite rules and custom template_redirect
I'm currently working on a file browser plugin which requires frontend editing capabilities for a registered user. For this scenario, I have registered some custom rewrite rules for my custom post ...
0
votes
1answer
22 views
Rewriting WordPress URLs
I've got a plugin which takes input through a GET request via a shortcode. The shortcode is placed on a page with the address /search, and the query used to execute this particular piece of the search ...
0
votes
2answers
119 views
Custom post type paging 404 error
I've an issue on custom post type,
I've create a custom post type called "Agenda" and the rewrite url for http://example.com/agenda it works correctly, it points to the archive-agenda.php template ...
0
votes
1answer
188 views
rewrite rules hierarchical
I want that my wordpres follow this rules:
/productes/ a page with all productes
/productes/[category]/ a taxonomy-page with all productes of the category
/productes/[category]/[subcategory]/ a ...
1
vote
1answer
369 views
How to Rewrite Wordpress URL for a Plugin
I am trying to build a Wordpress plugin here with a custom user admin area. What I would like to do is when the user adds /edit at the end of the page, it should open a page from my plugin. So for ...
0
votes
0answers
19 views
How to use a 301 redirect with categories [closed]
If I type an URL with a post ID:
http://www.foo.com/?p=4516
It redirects to a clean URL like this:
http://www.foo.com/this-is-a-clean-url
However if I type an URL with a category ID:
...
0
votes
1answer
40 views
Rewrites rules disappear after a while
My Plugin
I implemented a small plugin to be able to show events with a specific custom field in a special order. To have some nice permalinks I also used the add_rewrite_rule function to add those ...
0
votes
1answer
162 views
Custom url structure - pages under a custom post type
I'm struggling with the structure of my Wordpress site and I was hoping you might be able to give me some advice.
The site is for a series of events and the structure is as follows:
Gateway ...
2
votes
2answers
204 views
Make post slug have priority over category slug
I have a wordpress site where the category base is stripped from the url.
Now, when a category has a certain slug that's similar to a post slug, the category is shown.
I would like to show the post ...
0
votes
2answers
116 views
rewrite rule to redirect to the most recent date permalink
I've got an archive that's displayed using a URL on the form www.mysite.ex/mycpt and I need to make a rewrite rule for that URL which redirects to a permalink with the latest date archive, which is on ...
0
votes
1answer
201 views
Custom Post Type Rewrite To Include Parent Page(s)
I have a page title "more" with subpage "cities-guide". Said "cities guide" page has a loop that pulls in posts from custom post type "thailife_city_guide".
My permalink structure is ...
4
votes
1answer
131 views
Permalinks so that one custom post type appears to be a child of another, not working
Currently I have two post types, "products" and "products-data" they are separate post types; however, for all intents and purposes products-data is a child post of products. The relation is ...
0
votes
0answers
23 views
Custom Post Type and Rewrite Slug Not working for Archive page
I'm hoping someone can help me out. I asked this on Wordpress.org but figured no harm in asking here too.
I read an article about using a custom plugin to create custom post types. So I did. ...
0
votes
0answers
19 views
Category View with rewrite url
Is it possible to send the parameters in the category link
like
site.com/category/slugname/2011/20/10
and rewrite the url as
$wp_rewrite->rules = array_merge( ...
1
vote
1answer
99 views
Custom rewrite rule is not picked by Wordpress
I am trying to create a custom Rewrite URL something like
function add_my_rule() {
global $wp;
$wp->add_query_var('state');
$wp->add_query_var('state_destination');
...
4
votes
1answer
232 views
Custom Rewrite Rules Not Sticking
I've written some custom rewrite rules for a special feature on http://www.pewhispanic.org/states/. States is a page with a custom page template, page-states.php. The logic for returning the right ...
1
vote
1answer
74 views
Adding paged query to custom URL rewrite
I have set up the following to create 'pretty' post type and category permalinks:
function kdev_add_category_rules() {
$post_types = array(
'kdev_photos',
'kdev_videos',
...
0
votes
0answers
32 views
How to add custom query string to home page without being redirected to the posts page?
When permalinks are ON, I add this query var to my home page URL and I get redirected to the posts page or 404...
domain.com/myvar/myvalue
domain.com/?page=1354&myvar=myvalue
...
4
votes
3answers
322 views
How to add a custom URL placeholder to author archives?
I am working with a client who has a directory site that allows users to create accounts, then lists of items from the directory. Right now, whenever a user creates an account, she gets a profile URL ...
0
votes
1answer
53 views
Redirect URL to an existing page with query string or #! added on
I'm trying to make a photo gallery where the individual photos can be shared on Facebook and Twitter, and when you click the link, the photo that was shared will open in a lightbox automatically.
...
0
votes
1answer
37 views
Access $_POST data after redirect
How can I access $_POST data after a page redirect?
I guess there is some way to tell WordPress to pass all $_POST data to the redirected address, like it does with $_GET data, using Rewrite Rules, ...
3
votes
1answer
189 views
CPT Template Not Showing - Getting 404
I'm developing a Custom Post Type plugin, which works fine in dev. Now that I've moved it to production, I'm getting a 404 when I try to display the template for the CPT.
So, two questions:
1- Is ...
0
votes
1answer
38 views
Wordpress Rewrites - How can I pass a variable to Custom Post Type?
I'm looking for a wordpress rewrite that will let me pass a query var. I have a custom post type that produces urls like this:
example.com/custom-post-slug/custom-post-title/
my goal is to have
...
0
votes
1answer
49 views
Per Page Permalink Structure for Page Post Type
I am trying to Re-Write Page URL's so that they END with .htm
I was able to do this using...
/* Add .htm extension to Page URL Links */
add_action('init', 'htm_page_permalink', -1);
function ...
0
votes
4answers
1k views
Wordpress not respecting template hierarchy (fetches index.php instead of single.php or page.php)
I've encountered a strange error while developing a custom theme.
After finishing editing the template for a custom post type single view, I passed onto working at the template files for pages and I ...
0
votes
0answers
85 views
permalink and add_rewrite_rule - error 404
I'd like to have comments in a separate page with a dedicated template only for posts in a specific category (slug shops). Example: mysite.com/post-incatshops --> mysite.com/post-incatshops/comment
...
0
votes
0answers
43 views
Adding in Custom Directory/Path in URL Without Effecting Permalinks
After several tries of piecing together different forms of add_rewrite_rule() and .htaccess edits, I have not been able to find a solution that works. I want to add in a custom directory to a ...
2
votes
2answers
698 views
How to trigger 404 for custom query var?
How can you trigger a 404 when using custom query vars? I've got re-write rules written for a custom query var, but if you were to request a URL for the query var that should technically be a 404 it ...
0
votes
0answers
64 views
Custom Post Type Link not working
I have been messing with this problem for 3 weeks already with still no results. I downloaded the Rewrite Rules Inspector and Flushed the rules that are missing.
The server I'm using for hosting uses ...
0
votes
0answers
33 views
standard post with extra parameter brings permalink problem
This problem concerns several rewrite rules, but i'll stick to one, for clarity.
In my theme, i use a parameter "parentid" which gives me the page/post/custom post i've clicked on (the parent).
in ...
0
votes
1answer
38 views
Custom Rewrite Problem
I'm creating some custom rewrites using the code below. Everything works fine, as far as urls such as this:
example.com/reviews/showname
Tells my theme to use the special archive page and passes ...
5
votes
1answer
362 views
Rewrite Rule for Multilingual Website, Like qTranslate?
I would like to write my own little plugin for language switching. For that, the very first thing would be to get the rewrite rules running. I have been looking around the web for 2 hours, but I ...
0
votes
0answers
55 views
rewrite rule, add query var, but it is not in the function.php, it is in the plugin
I tried to create a plugin so that users don't need to edit other files (like function.php, header.php).
I tried to add a rewrite rule in the plugin, all things works fine, but add query var.
My code ...
3
votes
3answers
195 views
rewrite_rule() not preserving the query string
We have added a custom rewrite_rule to our site to allow for a pretty inbound link to be parsed and handled properly. Links are constructed as domain.com/meetings/faculty/someIDnumber
add_action( ...
0
votes
2answers
52 views
Paginate yearly archives for a custom post type
Here's the code I'm using to create yearly archives for a custom post type:
function myquery_custom_post_rewrite( $rewrite_rules ) {
$myqueryslug = 'customposttype';
$month_archive = array( ...
0
votes
1answer
85 views
Wordpress in “Couch Mode”?
I am trying to setup a "Couch Mode" (distraction free reading) on my WordPress blog as laid out in this article.
The guide in the article follows these steps:
Create a new page in WordPress with ...
0
votes
0answers
58 views
Problem with adding rewrite rules when using permalink redirection
When you change the post_name of a post, WordPress keeps the old post_name in the posts_meta table as wp_old_slug linked to the same post_id so the redirect from the old permalink to the new works ...
0
votes
0answers
95 views
Rewrite and replace url wp-admin/edit.php and wp-admin/post-new.php
everybody
I want to rewrite and replace all url
mydomain.com/wp-admin/edit.php -> mydomain.com/wp-admin/edit/
and
mydomain.com/wp-admin/post-new.php -> mydomain.com/wp-admin/addnewpost/
How i ...
1
vote
1answer
71 views
Custom Rewrite Rules
I am developing a plugin, the goal of which is to allow for a bookmark-able, pretty permalink search engine on a single page. To do so, I am using WP's rewrite rules to allow for the ...


