How to update all permalinks in site
How to update all permalinks in site
How to update all permalinks in site
Do look at the .htaccess file and check the RewriteBase. It should be commented out or read: RewriteBase / It sounds like it might be written as: RewriteBase /xyz Where xyz is the name of the folder controlling your subdomain. Also, what happens when you hit save twice on the Permalinks page?
Pagination is not working, how to trace it properly?
It is hard to tell exactly what you’ve done, and it sounds a bit messy, but I think you’ve created “Pages” using the child templates as the “Template” under page attributes. That, or you are linking to them directly with wp-content/theme/themename/templatename.php. You never want to link directly like that, but if that were the case … Read more
You have to add new page from Add new page menu at admin side and give this a name ‘submit’ and choose template you have created then publish the page.
Under permalink settings you want to use Custom Structure you can then customise it using the structure tags see http://codex.wordpress.org/Using_Permalinks#Structure_Tags this would allow you to add post id and author to the permalink for example. /%year%/%monthnum%/%day%/%postname%/%postid%/%author%/ All depending on what you need if you can be more specific about what you mean by native numbers … Read more
Go to your Admin Dashboard. Click on the Settings menu (or icon). Go to the General sub menu. The WordPress Address (URL) should match the Site Address (URL) Remove /blog form the Site Address (URL) Click the Save Changes button. Read Giving WordPress Its Own Directory for more details.
are you using archives widget? if not then which function you are calling to get archives. try to add this code (below) in your sidebar. <?php $archives = wp_get_archives(‘type=monthly&limit=10&echo=0’); if ($archives) { ?> <ul class=”archive-list”> <?php echo $archives; ?> </ul> <?php } ?> this will output as an unordered list of last 10 monthly archives, … Read more
.htaccess not working in WordPress
Use add_rewrite_endpoint instead of adding a new rewrite rule: function wpa_chapter_endpoint(){ add_rewrite_endpoint( ‘chapter’, EP_PERMALINK ); } add_action( ‘init’, ‘wpa_chapter_endpoint’ );