PluginProbe
F4 Post Tree / trunk
F4 Post Tree vtrunk
trunk 1.0.2 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.10 1.1.11 1.1.12 1.1.13 1.1.14 1.1.15 1.1.16 1.1.18 1.1.19 1.1.2 1.1.20 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 All 29 releases
f4-tree / Core / views / admin-settings.php

admin-settings.php in F4 Post Tree trunk, at Core/views/admin-settings.php

53 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <style>
2 @media screen and (min-width: 851px) {
3 .wrap {
4 display: flex;
5 }
6
7 .f4-options-form {
8 flex: 1 1 100%;
9 padding-right: 20px;
10 }
11
12 .f4-options-sidebar {
13 display: block;
14 padding-top: 12px;
15 flex: 0 0 300px;
16 }
17 }
18 </style>
19
20 <div class="wrap fs-section">
21 <div class="f4-options-form">
22 <h1>
23 <?php esc_html_e('Post Tree Settings', 'f4-tree'); ?>
24 </h1>
25
26 <!-- Tabs -->
27 <nav class="nav-tab-wrapper">
28 <a
29 href="<?php echo esc_url(admin_url('options-general.php?page=f4-tree-settings')); ?>"
30 class="nav-tab fs-tab nav-tab-active"
31 >
32 <?php esc_html_e('Settings', 'f4-tree'); ?>
33 </a>
34 </nav>
35
36 <?php do_action('F4/TREE/Core/before_admin_settings_form'); ?>
37
38 <form method="POST" action="options.php" novalidate="novalidate">
39 <?php settings_fields('f4-tree-settings'); ?>
40 <?php do_action('F4/TREE/Core/admin_settings_fields'); ?>
41 <?php submit_button(); ?>
42 </form>
43
44 <?php do_action('F4/TREE/Core/after_admin_settings_form'); ?>
45 </div>
46
47 <div class="f4-options-sidebar">
48 <a class="f4-options-sidebar-link" href="https://www.f4dev.ch" target="_blank">
49 <img src="<?php echo esc_url(F4_TREE_URL) . 'assets/img/made-with-love-by-f4.png'; ?>" alt="F4" />
50 </a>
51 </div>
52 </div>
53