Quickly customize your custom post type and taxonomy archives with a custom headline, image, and editable content. Modify order and pagination.
A quick easy way to customize archive pages (or pages with lists of posts like custom post types, categories, tags, or custom taxonomy terms). You can add editable content before or after the list, you can add a featured image. It also allows you to set up the order and pagination on these pages separately from the rest of your site. Taxonomies can share settings across all terms, or have specific settings per term. Administrators can change the settings, site editors can easily change the content.
Archive Titles: If your theme is using the_archive_title() function, then you can modify the your archive titles.
Featured Image: You can allow for a custom featured image that applies to an archive page and have it added above the list automatically, or add it yourself via a theme function.
Content Before List: Give your site editors the ability to edit content directly before the archive list. You can have it automatically added, or use a theme function to give you more control over their placement (see the “Other Notes” tab).
Content After List: Give your site editors the ability to edit content directly after the archive list. You can have it automatically added, or use a theme function to give you more control over their placement (see the “Other Notes” tab).
Archive Order By: Instead of messing with code to change the order of an archive page, now you can do it in a few clicks.
Archive Order: In addition to the order by setting, you’ll also want to change the sort order direction.
Archive Pagination: The pagination settings are easy to change without changing code.
Term Edit Options: For categories, tags, and custom taxonomies, you can choose a few additional things.
The plugin doesn’t add any CSS or javascript to the front end. The styling of the archive page is left completely up to you. This plugin should be friendly for power users and developers alike. You can use it entirely without changing theme code, or you can control the placement and functionality more exactly using the provided functions. See the “Other Notes” tab.
Have an idea that should be added? Let me know at SwitchWP.
the_archive_top_content( boolean $html = true )
Displays the top archive content on an archive page. Additional html markup can be removed by setting false.
archive_top_content( boolean $html = true, string $post_type_slug = null, string $term_id = null )
Displays the top archive content for any post type anywhere on the site. Additional html markup can be removed by setting false. Post type is automatic if on an archive page.
get_archive_top_content( string $post_type_slug = null, string $term_id = null )
Returns the top archive content for any post type anywhere on the site. Post type or term id is automatic if on an archive page.
the_archive_bottom_content( boolean $html = true )
Displays the bottom archive content on an archive page. Additional html markup can be removed by setting false.
archive_bottom_content( boolean $html = true, string $post_type_slug = null, string $term_id = null )
Displays the bottom archive content for any post type anywhere on the site. Additional html markup can be removed by setting false. Post type is automatic if on an archive page.
get_archive_bottom_content( string $post_type_slug = null, string $term_id = null )
Returns the top archive content for any post type anywhere on the site. Post type or term id is automatic if on an archive page.
the_archive_thumbnail( string $size = ‘large’, string $post_type_slug = null, string $term_id = null )
Display the archive thumbnail. Default size is large but first parameter can set any valid image size, or an array of width and height values in pixels (in that order). Post type is automatic if on an archive page.
get_archive_thumbnail_src( string $size = ‘large’, string $post_type_slug = null, string $term_id = null )
Returns the archive image url source. Default size is large but first parameter can set any valid image size, or an array of width and height values in pixels (in that order). Post type is automatic if on an archive page.
get_archive_thumbnail_id( string $post_type_slug = null, string $term_id = null )
Returns the archive thumbnail id. if you want to use other common WordPress attachment functions to retrieve data about the image. Post type or term id is automatic if on an archive page.
/wp-content/plugins/archive-control
directory, or install the zipped plugin through the WordPress plugins screen directly.An example of a custom post type archive page.
Settings for each custom post type that has an archive.
Settings for categories, taxonomies, and custom taxonomies.
For custom post types, give your editors the ability to edit archive headlines, a featured image, and content before and after the list.
For taxonomies, give your editors the ability to add a featured image, content before and after the list, and customize order and pagination per term.
An archive page is really just WordPress terminology for a page with a list of multiple pieces of content (posts). By default this content is in date order, with the newest appearing at the top, like a blog, and would be split into pages with 10 posts each. WordPress gives you the ability to manipulate this list through code, changing the order, pagination and other characteristics, but doesn’t give you an interface for doing so. WordPress also by default does not have any interface for storing content like images and text that are related to a specific archive page. That is the problem that this plugin tries to provide the solution for.
It depends a lot how your custom post type is created. It must be set to “public”, and it must have “has_archive” set to true, or a string. Be sure to check those settings first!
The archive title functionality requires that a special function is used to display it: the_archive_title(). This is an official WordPress function, but it is relatively new. If your theme does not use this function, and either hardcodes the title or uses a different function, then this plugin won’t be able to help without you modifying the theme template.
The “Automatic” setting uses the “loop_start” and “loop_end” WordPress hooks to inject the content. If you would rather use the “Manual Function” setting, then we give you the functions the_archive_top_content() and the_archive_bottom_content() to place in your theme as you choose.
This cannot be done through the interface (it shows the “large” size by default), but is entirely possible to do by putting functions in your theme files. The functions provided by this theme are listed in the “Other Notes” tab. For example, the_archive_thumbnail(‘thumbnail’) would change the size to a thumbnail. If you want to create a new size you can either send along an array like this: the_archive_thumbnail(array(500,200)) or register a new size with the add_image_size() functionality.
A custom post type allows you to make the content adding/editing process more specific for different kinds of content. By default it works similarly to a “Post”, but can be modified to have different settings and even unique custom fields. To create one you could do it several ways:
A custom taxonomy allows you to categorize specific elements separately from others. It works similarly to a “Category” or “Tag”. To create one you could do it several ways: