|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Aldine;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add <body> classes
|
|
|
|
*/
|
|
|
|
add_filter('body_class', function (array $classes) {
|
|
|
|
/** Add page slug if it doesn't exist */
|
|
|
|
if (is_single() || is_page() && !is_front_page()) {
|
|
|
|
if (!in_array(basename(get_permalink()), $classes)) {
|
|
|
|
$classes[] = basename(get_permalink());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Clean up class names for custom templates */
|
|
|
|
$classes = array_map(function ($class) {
|
|
|
|
return preg_replace(['/-blade(-php)?$/', '/^page-template-views/'], '', $class);
|
|
|
|
}, $classes);
|
|
|
|
|
|
|
|
return array_filter($classes);
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add "… Continued" to the excerpt
|
|
|
|
*/
|
|
|
|
add_filter('excerpt_more', function () {
|
|
|
|
return ' … <a href="' . get_permalink() . '">' . __('Continued', 'aldine') . '</a>';
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Template Hierarchy should search for .blade.php files
|
|
|
|
*/
|
|
|
|
collect([
|
|
|
|
'index', '404', 'archive', 'author', 'category', 'tag', 'taxonomy', 'date', 'home',
|
|
|
|
'frontpage', 'page', 'paged', 'search', 'single', 'singular', 'attachment'
|
|
|
|
])->map(function ($type) {
|
|
|
|
add_filter("{$type}_template_hierarchy", __NAMESPACE__.'\\filter_templates');
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Render page using Blade
|
|
|
|
*/
|
|
|
|
add_filter('template_include', function ($template) {
|
|
|
|
$data = collect(get_body_class())->reduce(function ($data, $class) use ($template) {
|
|
|
|
return apply_filters("sage/template/{$class}/data", $data, $template);
|
|
|
|
}, []);
|
|
|
|
if ($template) {
|
|
|
|
echo template($template, $data);
|
|
|
|
return get_stylesheet_directory().'/index.php';
|
|
|
|
}
|
|
|
|
return $template;
|
|
|
|
}, PHP_INT_MAX);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tell WordPress how to find the compiled path of comments.blade.php
|
|
|
|
*/
|
|
|
|
add_filter('comments_template', function ($comments_template) {
|
|
|
|
$comments_template = str_replace(
|
|
|
|
[get_stylesheet_directory(), get_template_directory()],
|
|
|
|
'',
|
|
|
|
$comments_template
|
|
|
|
);
|
|
|
|
return template_path(locate_template(["views/{$comments_template}", $comments_template]) ?: $comments_template);
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove Admin Bar callback
|
|
|
|
*/
|
|
|
|
add_action('admin_bar_init', function () {
|
|
|
|
remove_action('wp_head', '_admin_bar_bump_cb');
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove Emoji
|
|
|
|
* @see https://wordpress.stackexchange.com/questions/185577/disable-emojicons-introduced-with-wp-4-2
|
|
|
|
*/
|
|
|
|
add_action('init', function () {
|
|
|
|
remove_action('admin_print_styles', 'print_emoji_styles');
|
|
|
|
remove_action('wp_head', 'print_emoji_detection_script', 7);
|
|
|
|
remove_action('admin_print_scripts', 'print_emoji_detection_script');
|
|
|
|
remove_action('wp_print_styles', 'print_emoji_styles');
|
|
|
|
remove_filter('wp_mail', 'wp_staticize_emoji_for_email');
|
|
|
|
remove_filter('the_content_feed', 'wp_staticize_emoji');
|
|
|
|
remove_filter('comment_text_rss', 'wp_staticize_emoji');
|
|
|
|
add_filter('emoji_svg_url', '__return_false');
|
|
|
|
});
|