PluginProbe
wpForo Forum / 1.3.1
wpForo Forum v1.3.1
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 1.4.2 All 137 releases
wpforo / wpf-themes / classic / header.php

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

35 lines 1.6 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_home_url() ?>" method="get">
22 <?php wpforo_make_hidden_fields_from_url( wpforo_home_url() ) ?>
23 <i class="fa fa-search"></i><input class="wpf-search-field" name="wpfs" type="text" value="" style="margin-right:10px;" />
24 </form>
25 <?php endif; ?>
26 </div>
27 <?php do_action( 'wpforo_menu_bar_end', $wpforo ); ?>
28 </div>
29 <?php endif; ?>
30
31 <?php if( wpforo_feature('breadcrumb', $wpforo) ): ?>
32 <?php $wpforo->tpl->breadcrumb($wpforo->current_object) ?>
33 <?php endif; ?>
34
35 <?php do_action( 'wpforo_header_hook' ); ?>