Disable date based archives for all categories except one
Disable date based archives for all categories except one
Disable date based archives for all categories except one
The wordpress links section doesn’t allow for subcategories. You could, however, create a custom “menu” (in the Appearance section of the dashboard) and then display that menu using a sidebar widget.
Category archives with monthly pagination
Advanced author permalinks
Sorting a specific taxonomy by archive date using URL
You can add a custom post status via register_post_status, but I’ll warn you now that the API only half exists for this. You won’t see any UI to allow you to set this status, you’ll have to provide your own via a custom meta box, and you won’t see anything on the back-end to allow … Read more
I needed this for a client recently (he wanted to do the same but be able to create a archive by himself in the wordpress backend) and couldn’t find a good plugin for it. It’s pretty easy to custom code this actually. You just need to make your install a network install and then place … Read more
Is it better to use filter for the_content in archive pages?
Custom post types are not included in the ordinary archives by default, even if registered with the taxonomies argument. You will need to add the post type to the query yourself. add_action( ‘pre_get_posts’, function($qry) { if ($qry->is_main_query() && $qry->is_category()) { $qry->set(‘post_type’,array(‘post’,’yourposttype’)); } } );
Date Archive pages 404 error