Tagged Questions
0
votes
1answer
50 views
Wordpress Rewrite Rule
I have a standard page setup at http://mysite.com/mypage/
I'd like to setup a rewrite rule in my theme functions that takes any URLs such as:
http://mysite.com/mypage/helloworld/ <-- Currently ...
0
votes
1answer
76 views
Page permalink rewrite
I added the following code which allows categories on my 'Page' post type.
add_action('init', 'edit_page_type');
function edit_page_type()
{
register_taxonomy_for_object_type('category', ...
3
votes
3answers
1k views
Need help with friendly URL's in Wordpress
I'm creating som custom templates in Wordpress and I'm passing some data in the URL's.
Currently my URL looks like this:
http://www.mysite.com/designers/?id=43&name=designer+name
The URL ...