mcaskill / sage-theme-wrapper
Standalone version of the Sage theme layout wrapper for WordPress.
Installs: 4 865
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=5.6
This package is auto-updated.
Last update: 2020-09-06 00:46:40 UTC
README
Standalone version of the Sage Theme Wrapper for themes.
Installation
Require this package, with Composer, in the root directory of your project.
$ composer require mcaskill/sage-theme-wrapper
Usage
- Add
base.php
to your theme's directory. - Add the following filter to your theme's
functions.php
:
Example #1:
<?php add_filter('template_include', [ '\\Roots\\Sage\\Wrapper', 'wrap'], 109);
Example #2:
<?php use Roots\Sage\Wrapper as W; add_filter('template_include', function ($main) { // Check for other filters returning null if (!is_string($main)) { return $main; } W::$main_template = $main; W::$base = basename(W::$main_template, '.php'); if (W::$base === 'index') { W::$base = false; } return new W('layouts/base.php'); }, 109);
Credits
All credits & copyrights belongs to people behind Sage.