Alias ‘wp-content’ directory to something shorter (framework?)
Alias ‘wp-content’ directory to something shorter (framework?)
Alias ‘wp-content’ directory to something shorter (framework?)
Change permalink rule if category is called “uncategorized”
How to restore WP 5.4 behaviour where a numeric string could added to each page URL and parsed as “page” in WP 5.5?
@Paul G. you’re right, switched to another theme showed the right link for editing user. My bad though, I missed functions.php from child theme where its modified add_filter(‘get_edit_user_link’, …
Newbie question: no index.php? in my plain wordpress permalink
This doesn’t require a WordPress modification per se, but if you prefer to do it that way, here is a decent tutorial: http://shibashake.com/wordpress-theme/wordpress-page-redirect. Some people would, however, prefer to do this via the .htaccess file, here is a quick guide on how to do redirects that way: http://perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/#red1.
Not sure if you’re still looking for an answer, but I wrote a plugin to take care of this: http://yjsoon.com/dfll-plugin I’m not sure if your using linked_list_url means you’re already using the plugin, but if you are, I just updated it. 🙂
My plugin Custom Post Permalinks does this. http://wordpress.org/extend/plugins/custom-post-permalinks
I see from some of the previous questions/answers, WordPress MU Domain Mapping plugin might work for me. As long as you’ve created a network first, yes. this is what you need. Then to pump them all to the main site, use this: http://wordpress.org/extend/plugins/wordpress-mu-sitewide-tags/ That’s pretty much it.
adding this in the functions.php file works. Just remember to re-save your permalinks & empty the cache a few times to see the changes. add_action( ‘init’, ‘wpse13483_init’ ); function wpse13483_init() { add_rewrite_rule( ‘category/(.+?)/orderby/([^/]+)?/?$’, ‘index.php?category_name=$matches[1]&orderby=$matches[2]&order=asc’, ‘top’ ); add_rewrite_rule( ‘category/(.+?)/orderby/([^/]+)/order/([^/]+)?/?$’, ‘index.php?category_name=$matches[1]&orderby=$matches[2]&order=$matches[3]’, ‘top’ ); // with pagination; add_rewrite_rule( ‘category/(.+?)/orderby/([^/]+)/order/([^/]+)/page/([0-9]{1,})?/?$’, ‘index.php?category_name=$matches[1]&orderby=$matches[2]&order=$matches[3]&paged=$matches[4]’, ‘top’ ); }