PluginProbe
wpForo Forum / 1.1.0
wpForo Forum v1.1.0
3.1.6 3.1.5 3.1.4 3.1.2 3.1.1 3.1.0 3.0.9 3.0.8 3.0.7 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 1.4.13 All 138 releases
wpforo / wpf-themes / classic / header.php

header.php in wpForo Forum 1.1.0, at wpf-themes/classic/header.php

34 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 // Exit if accessed directly
3 if( !defined( 'ABSPATH' ) ) exit;
4 ?>
5
6 <div id="wpforo-wrap" class="<?php do_action( 'wpforo_wrap_class', $wpforo ); ?>">
7
8 <?php do_action( 'wpforo_top_hook' ); ?>
9
10 <?php if( wpforo_feature('top-bar', $wpforo) ): ?>
11 <div id="wpforo-menu" style="display:table; width:100%;">
12 <?php do_action( 'wpforo_menu_bar_start', $wpforo ); ?>
13 <div class="wpf-left" style="display:table-cell">
14 <?php if($wpforo->tpl->has_menu()): ?>
15 <span class="wpf-res-menu"><i class="fa fa-bars"></i></span>
16 <?php $wpforo->tpl->nav_menu() ?>
17 <?php endif; ?>
18 </div>
19 <div class="wpf-right wpf-search" style="display:table-cell; text-align:right; position:relative;">
20 <?php if( wpforo_feature('top-bar-search', $wpforo) ): ?>
21 <form action="<?php echo WPFORO_BASE_URL ?>" method="get">
22 <i class="fa fa-search"></i><input class="wpf-search-field" name="wpfs" type="text" value="" style="margin-right:10px;" />
23 </form>
24 <?php endif; ?>
25 </div>
26 <?php do_action( 'wpforo_menu_bar_end', $wpforo ); ?>
27 </div>
28 <?php endif; ?>
29
30 <?php if( wpforo_feature('breadcrumb', $wpforo) ): ?>
31 <?php $wpforo->tpl->breadcrumb($wpforo->current_object) ?>
32 <?php endif; ?>
33
34 <?php do_action( 'wpforo_header_hook' ); ?>