A plugin to write Object-Oriented code in combination with the Twig templating engine while keeping the WordPress Way of working in mind.
Check out the getting started with Clarkson Core guide if you are just getting to know the project.
composer require level-level/clarkson-Core
or read the installation guide.
Uses the internal Template Hierarchy so you can replace index.php
with index.twig
or archive-company.php
with archive-company.twig
and still have all Posts or CPT's available in "The Loop".
{% extends "layouts/full-width.twig" %}
{% block content %}
{% for object in objects %}
{% include 'partials/teaser.twig' %}
{% endfor %}
{% endblock %}
It autoloads default objects that behave just like WP_Post
and other native WordPress object but with some more handy stuff.
When you register a Custom Post Type ll_company
your custom class ll_company
gets loaded in the Twig context as objects
variable within the archive-company.twig
.
Read up on Clarkson objects and how they are initiated.
Currently
- Clone repository
git@github.com:level-level/Clarkson-Core.git clarkson-core
. - Run
composer install
in the newclarkson-core
directory. - Run
composer run test
.