PluginProbe
wpForo Forum / 1.4.0
wpForo Forum v1.4.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-admin / options-tabs / forums.php

forums.php in wpForo Forum 1.4.0, at wpf-admin/options-tabs/forums.php

19 lines 552 B
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 if( !current_user_can('administrator') ) exit;
5 ?>
6
7
8 <form action="" method="POST" class="validate">
9 <?php wp_nonce_field( 'wpforo-settings-forums' ); ?>
10 <table class="wpforo_settings_table">
11 <tbody>
12 <?php do_action( 'wpforo_settings_forums', $wpforo ); ?>
13 </tbody>
14 </table>
15 <div class="wpforo_settings_foot">
16 <input type="submit" class="button button-primary" value="<?php _e('Update Options', 'wpforo'); ?>" />
17 </div>
18 </form>
19