-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.php
executable file
·44 lines (31 loc) · 1 KB
/
sidebar.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/**
* *PHP version 8.1
*
* Sidebar | core/sidebar.php.
*
* @category Sidebar
* @package Clashvibes
* @subpackage Sidebar
* @author Raymond Thompson <ray_thomp@hushmail.com>
* @copyright 2017 Raymond Thompson
* @license http://www.gnu.org/licenses/gpl-3.0.en.html GPLv3
* @version GIT: https://github.com/raythompsonwebdev/clashvibes .git
* @link http:www.raythompsonwebdev.co.uk custom template
*/
?>
<aside id="secondary" class="widget-area">
<h2 id="secondary-header"><?php esc_html_e('Menu', 'clashvibes'); ?></h2>
<section id="clashvibes-login">
<?php get_search_form(); ?>
</section>
<section class="sidebar-navigation">
<?php
if (! function_exists('dynamic_sidebar') || ! dynamic_sidebar('Primary Sidebar') ) :
?>
<section class="widget">
<h2 class="widget-title"><?php esc_html_e('Links', 'clashvibes'); ?></h2>
</section>
<?php endif; ?>
</section>
</aside>