pragmaticweb / customisable-archive-templates
> Customise the WordPress term archive template with the block editor.
Installs: 8 702
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 2
Open Issues: 0
Type:wordpress-plugin
Requires
- php: ~7.3
- oomphinc/composer-installers-extender: ~1.1
Requires (Dev)
This package is auto-updated.
Last update: 2024-11-05 18:26:00 UTC
README
A project by Pragmatic.
Customise the WordPress term archive template with the block editor.
Requirements
Usage Requirements
Ensure you have the prerequisite software installed:
Installation
Install this plugin with Composer: composer require pragmaticweb/customisable-archive-templates
. Activate the plugin in your WordPress in the usual manner.
Edit a taxonomy term, and enable "Use Template". Set "Template Post ID" to a Post ID of any kind of WordPress post object. This post will be rendered onto the taxonomy archive URL for the specific term.
After that, create a custom taxonomy-{taxonomy_name}.php
template in your theme and customise it for your requirements. We suggest duplicating a single post template like page.php
.
The first post in the template loop will be the "Template Post" you selected earlier; everything subsequent will be the standard list of all posts that are assigned to the current taxonomy term.
You can choose to split the loop and render both parts in different places (e.g. a "see more xyz content" footer), or just render the main "Template Post" and skip the rest of the template loop with a break
instruction inside the loop.
Development Process
This plugin mostly follows the standard Git Flow model.
Workflow
Development happens in feature branches, which are merged into develop
, and then eventually merged into trunk
for deployment to production. When making changes, a feature branch should be created that branches from develop
(and the corresponding pull request should use develop
as the target branch).
Scripts and Tooling
composer run lint:phpcs
-- checks PHP files for compatibility with the WordPress-VIP-Go standards.composer run lint:phpcompat
-- checks PHP files for compatibility with PHP 7.3.