You can copy and paste the text anywhere.
No internet connection required.
It's even more compatible than emoji's.
Pay attention to charges if texting and have fun!


Chaotic good
<?php | |
require_once __DIR__ .'/library/Skellie/Frame.php'; | |
use Skellie\Frame; | |
/** | |
* Takes over the rendering process and uses layouts instead | |
* @param string $templateFile | |
* @return null | |
*/ | |
add_filter('template_include', function ($templateFile) { | |
$frame = new Frame($templateFile); | |
// cherry picking forces templates to choose a layout or wordpress will go on | |
$output = $frame->requireCherryPicking(true) | |
->render(); | |
// if the frame render returned null go on with regular wordpress | |
if (null === $output) { | |
return $templateFile; | |
} | |
echo $output; | |
// required in order to prevent wordpress from rendering | |
return null; | |
}, 10000); |
/**Enabling the cherry picking requirement during installation allows Skellie to take over rendering but only for templates that explicitely ask for a layout. All your remaining templates will continue using wordpress.
* @layout myOwnLayout
*/
<?php echo $this->content(); ?>then finish up with the contents of footer.php.
<?php echo $this->partial('header'); ?>
<body <?php body_class('layout-'.$this->layout); ?>>That will give the body-tag classes of both the layout and the template, so you can minimize the need of creating more layouts.
<?php echo $this->partial('footer'); ?>
<?php echo $this->partial($slug, $name); ?>Copy the contents of {$slug}-{$name}.php into partials/$slug/$name.php
<?php echo $this->partial('navigation', $name); ?>
But first the fun part.
- partials/list/$type.php for aggregating posts of a type (cat, post_type etc)
- partials/preview/$type.php for showing an excerpt of a single post
- partials/content/$type.php for showing the full content of a single post
- partials/pagination/$type.php for things like next/previous article, wp_paginate or link to a list of articles
<?php | |
$params = array( | |
'categorySlug' => 'news', | |
'limit' => 7 | |
); | |
echo $this->partial('list', 'category', $params); ?> |
<?php | |
query_posts(array( | |
'posts_per_page' => $this->limit?:10, | |
'category_name' => $this->categorySlug, | |
'paged' => get_query_var('paged') | |
)); | |
if (have_posts()) {?> | |
<section class="categoryList"> | |
<header><h2><?php echo $this->title?:'Archive'; ?></h2></header> | |
<?php | |
while (have_posts()) { | |
the_post(); | |
echo $this->partial('preview', $this->categorySlug); | |
}?> | |
<?php if (!$this->hideFooter) { ?> | |
<footer><?php echo $this->partial('paginate', 'browse'); ?></footer> | |
<?php } ?> | |
</section> | |
<?php | |
} | |
wp_reset_query(); |
<?php echo $this->partial('header'); ?> | |
<body <?php body_class('layout-'.$this->layout); ?>> | |
<header class="container_16 clearfix" role="banner"> | |
<div class="grid_3"><h1 class="ir siteTitle"><a href="/"><?php echo bloginfo('name'); ?></a></h1> | |
</div> | |
<div class="grid_9"> | |
<?php echo $this->partial('menu', 'utility'); ?> | |
</div> | |
<div class="grid_4"> | |
<?php echo $this->partial('search-form', null, array('id' => 'headerSearchForm')); ?> | |
</div> | |
<div class="grid_16"> | |
<?php echo $this->partial('menu', 'main'); ?> | |
</div> | |
</header> | |
<div id="wrapper" class="container_16 clearfix" role="main"> | |
<div class="grid_3"><aside role="complementary"><?php echo $this->partial('sidebar', 'left'); ?></aside></div> | |
<div class="grid_9"><?php | |
echo $this->partial('menu', 'breadcrumbs'); | |
echo $this->content(); | |
?></div> | |
<div class="grid_4"><aside role="complementary"><?php echo $this->partial('sidebar', 'right'); ?></aside></div> | |
</div> | |
<?php echo $this->partial('footer'); ?> | |
</body> | |
</html> |
<h2>Leave a comment</h2> | |
<?php | |
comment_form(array('comment_notes_after'=>'', 'title_reply' => '')); | |
echo $this->partial('list', 'comments'); |