fabolivark / Clarkson-Core

A plugin to write Object-Oriented code in combination with the Twig templating engine while keeping the WordPress Way of working in mind.

Home Page:http://wp-clarkson.com/core

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status

Clarkson Core

A plugin to write Object-Oriented code in combination with the Twig templating engine while keeping the WordPress Way of working in mind.

Requirements

Composer, that's it.

Whats does What?

Here is a brief explanation of the basics of Clarkson Core.

Template Hierachy

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 %}

Autoloading of WordPress-object classes per Custom Post Type.

It autoloads a default Clarkson Object that is just like WP_Post 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.

More info about WordPress objects.

More documentation

Tests

Currently

  1. Clone repository git@github.com:level-level/Clarkson-Core.git clarkson-core.
  2. Run composer install in the new clarkson-core directory.
  3. Run composer run test.

About

A plugin to write Object-Oriented code in combination with the Twig templating engine while keeping the WordPress Way of working in mind.

http://wp-clarkson.com/core


Languages

Language:PHP 98.4%Language:Shell 1.6%