Update from Git Manager GUI

This commit is contained in:
2026-03-18 21:56:40 +01:00
parent 0c7a68bf51
commit ada7fc7ecc
16 changed files with 1289 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
if ( ! defined( 'ABSPATH' ) ) exit;
get_header();
global $post;
$settings = get_option('wmw_settings', array());
$wiki = $post;
?>
<div class="wmw-page wmw-wiki-page">
<?php if ($settings['show_breadcrumbs'] ?? 1): ?>
<?php WMW_Frontend::render_breadcrumb($wiki); ?>
<?php endif; ?>
<?php WMW_Frontend::render_wiki_index($wiki); ?>
</div>
<?php get_footer(); ?>