Version Description
Download this release
Release Info
Developer | rilwis |
Plugin | Meta Box |
Version | 4.19.10 |
Comparing to | |
See all releases |
Code changes from version 4.14.9 to 4.19.10
- css/text-list.css +19 -0
- inc/about/about.php +100 -29
- inc/about/css/{style.css → about.css} +49 -12
- inc/about/images/meta-box.png +0 -0
- inc/about/images/meta-box.svg +5 -0
- inc/about/js/{script.js → about.js} +0 -0
- inc/about/sections/extensions.php +284 -262
- inc/about/sections/tabs.php +1 -0
- inc/about/sections/welcome.php +2 -2
- inc/fields/image.php +1 -1
- inc/fields/map.php +2 -1
- inc/fields/text-list.php +36 -13
- inc/loader.php +1 -1
- js/select-advanced.js +1 -0
- meta-box.php +1 -1
- readme.txt +3 -3
css/text-list.css
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.rwmb-text_list-non-cloneable > .rwmb-input,
|
2 |
+
.rwmb-text_list-clone {
|
3 |
+
display: flex;
|
4 |
+
flex-wrap: wrap;
|
5 |
+
}
|
6 |
+
.rwmb-text_list-non-cloneable > .rwmb-input > label,
|
7 |
+
.rwmb-text_list-clone > label {
|
8 |
+
margin: 0 10px 10px 0;
|
9 |
+
}
|
10 |
+
.rwmb-text_list-non-cloneable > .rwmb-input > label:last-child,
|
11 |
+
.rwmb-text_list-clone > label:last-child {
|
12 |
+
margin-right: 0;
|
13 |
+
}
|
14 |
+
|
15 |
+
.rwmb-text-list-label {
|
16 |
+
font-weight: 600;
|
17 |
+
display: block;
|
18 |
+
margin-bottom: 5px;
|
19 |
+
}
|
inc/about/about.php
CHANGED
@@ -28,19 +28,15 @@ class RWMB_About {
|
|
28 |
// Add links to about page in the plugin action links.
|
29 |
add_filter( 'plugin_action_links_meta-box/meta-box.php', array( $this, 'plugin_links' ) );
|
30 |
|
31 |
-
// Add a
|
32 |
-
add_action( 'admin_menu', array( $this, '
|
33 |
-
add_action( '
|
34 |
|
35 |
-
//
|
36 |
-
add_action( '
|
37 |
|
38 |
// Redirect to about page after activation.
|
39 |
add_action( 'activated_plugin', array( $this, 'redirect' ), 10, 2 );
|
40 |
-
|
41 |
-
if ( isset( $_GET['page'] ) && 'meta-box-about' === $_GET['page'] ) {
|
42 |
-
add_filter( 'admin_footer_text', array( $this, 'change_footer_text' ) );
|
43 |
-
}
|
44 |
}
|
45 |
|
46 |
/**
|
@@ -51,28 +47,56 @@ class RWMB_About {
|
|
51 |
* @return array
|
52 |
*/
|
53 |
public function plugin_links( $links ) {
|
54 |
-
$links[] = '<a href="' . esc_url(
|
55 |
return $links;
|
56 |
}
|
57 |
|
58 |
/**
|
59 |
* Register admin page.
|
60 |
*/
|
61 |
-
public function
|
62 |
-
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
__( 'Welcome to Meta Box', 'meta-box' ),
|
|
|
65 |
'activate_plugins',
|
66 |
-
'meta-box
|
67 |
array( $this, 'render' )
|
68 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
}
|
70 |
|
71 |
/**
|
72 |
* Hide about page from the admin menu.
|
73 |
*/
|
74 |
public function hide_page() {
|
75 |
-
remove_submenu_page(
|
76 |
}
|
77 |
|
78 |
/**
|
@@ -85,16 +109,23 @@ class RWMB_About {
|
|
85 |
<div id="post-body" class="metabox-holder columns-2">
|
86 |
<div id="post-body-content">
|
87 |
<div class="about-wrap">
|
88 |
-
<?php
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
|
|
|
|
|
|
93 |
</div>
|
94 |
</div>
|
95 |
<div id="postbox-container-1" class="postbox-container">
|
96 |
-
<?php
|
97 |
-
|
|
|
|
|
|
|
|
|
98 |
</div>
|
99 |
</div>
|
100 |
</div>
|
@@ -106,12 +137,8 @@ class RWMB_About {
|
|
106 |
* Enqueue CSS and JS.
|
107 |
*/
|
108 |
public function enqueue() {
|
109 |
-
|
110 |
-
|
111 |
-
return;
|
112 |
-
}
|
113 |
-
wp_enqueue_style( 'meta-box-about', RWMB_URL . 'inc/about/css/style.css' );
|
114 |
-
wp_enqueue_script( 'meta-box-about', RWMB_URL . 'inc/about/js/script.js', array( 'jquery' ), '', true );
|
115 |
}
|
116 |
|
117 |
/**
|
@@ -139,11 +166,39 @@ class RWMB_About {
|
|
139 |
*/
|
140 |
public function redirect( $plugin, $network_wide ) {
|
141 |
if ( ! $network_wide && 'meta-box/meta-box.php' === $plugin && ! $this->is_bundled() ) {
|
142 |
-
wp_safe_redirect(
|
143 |
die;
|
144 |
}
|
145 |
}
|
146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
/**
|
148 |
* Check if Meta Box is bundled by TGM Activation Class.
|
149 |
*/
|
@@ -156,4 +211,20 @@ class RWMB_About {
|
|
156 |
}
|
157 |
return false;
|
158 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
}
|
28 |
// Add links to about page in the plugin action links.
|
29 |
add_filter( 'plugin_action_links_meta-box/meta-box.php', array( $this, 'plugin_links' ) );
|
30 |
|
31 |
+
// Add a shared top-level admin menu and Dashboard page. Use priority 5 to show Dashboard at the top.
|
32 |
+
add_action( 'admin_menu', array( $this, 'add_menu' ), 5 );
|
33 |
+
add_action( 'admin_menu', array( $this, 'add_submenu' ), 5 );
|
34 |
|
35 |
+
// If no admin menu, then hide the About page.
|
36 |
+
add_action( 'admin_head', array( $this, 'hide_page' ) );
|
37 |
|
38 |
// Redirect to about page after activation.
|
39 |
add_action( 'activated_plugin', array( $this, 'redirect' ), 10, 2 );
|
|
|
|
|
|
|
|
|
40 |
}
|
41 |
|
42 |
/**
|
47 |
* @return array
|
48 |
*/
|
49 |
public function plugin_links( $links ) {
|
50 |
+
$links[] = '<a href="' . esc_url( $this->get_menu_link() ) . '">' . esc_html__( 'About', 'meta-box' ) . '</a>';
|
51 |
return $links;
|
52 |
}
|
53 |
|
54 |
/**
|
55 |
* Register admin page.
|
56 |
*/
|
57 |
+
public function add_menu() {
|
58 |
+
if ( ! $this->has_menu() ) {
|
59 |
+
return;
|
60 |
+
}
|
61 |
+
add_menu_page(
|
62 |
+
__( 'Meta Box', 'meta-box' ),
|
63 |
+
__( 'Meta Box', 'meta-box' ),
|
64 |
+
'activate_plugins',
|
65 |
+
'meta-box',
|
66 |
+
'__return_null',
|
67 |
+
'data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB2aWV3Qm94PSIxNjQuMzI4IDE0OS40NDEgNTMuNDcgNDIuNjYiIHdpZHRoPSI1My40NyIgaGVpZ2h0PSI0Mi42NiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNIDIwNC42NjggMTc5LjM5MSBMIDIwNS40ODggMTYwLjU1MSBMIDIwNS4zMTggMTYwLjUyMSBMIDE5My44ODggMTkyLjEwMSBMIDE4OC4xNDggMTkyLjEwMSBMIDE3Ni43NzggMTYwLjY0MSBMIDE3Ni42MDggMTYwLjY2MSBMIDE3Ny40MjggMTc5LjM5MSBMIDE3Ny40MjggMTg2LjA5MSBMIDE4MS45OTggMTg2Ljk3MSBMIDE4MS45OTggMTkyLjEwMSBMIDE2NC4zMjggMTkyLjEwMSBMIDE2NC4zMjggMTg2Ljk3MSBMIDE2OC44NjggMTg2LjA5MSBMIDE2OC44NjggMTU1LjQ4MSBMIDE2NC4zMjggMTU0LjYwMSBMIDE2NC4zMjggMTQ5LjQ0MSBMIDE2OC44NjggMTQ5LjQ0MSBMIDE4MC4wMjggMTQ5LjQ0MSBMIDE5MC44OTggMTgwLjg4MSBMIDE5MS4wNzggMTgwLjg4MSBMIDIwMi4wMzggMTQ5LjQ0MSBMIDIxNy43OTggMTQ5LjQ0MSBMIDIxNy43OTggMTU0LjYwMSBMIDIxMy4yMjggMTU1LjQ4MSBMIDIxMy4yMjggMTg2LjA5MSBMIDIxNy43OTggMTg2Ljk3MSBMIDIxNy43OTggMTkyLjEwMSBMIDIwMC4xMjggMTkyLjEwMSBMIDIwMC4xMjggMTg2Ljk3MSBMIDIwNC42NjggMTg2LjA5MSBMIDIwNC42NjggMTc5LjM5MSBaIiBzdHlsZT0iZmlsbDogcmdiKDE1OCwgMTYzLCAxNjgpOyB3aGl0ZS1zcGFjZTogcHJlOyIvPgo8L3N2Zz4='
|
68 |
+
);
|
69 |
+
}
|
70 |
+
|
71 |
+
/**
|
72 |
+
* Add submenu for the About page.
|
73 |
+
*/
|
74 |
+
public function add_submenu() {
|
75 |
+
$parent_menu = $this->has_menu() ? 'meta-box' : $this->get_parent_menu();
|
76 |
+
$about = add_submenu_page(
|
77 |
+
$parent_menu,
|
78 |
__( 'Welcome to Meta Box', 'meta-box' ),
|
79 |
+
__( 'Dashboard', 'meta-box' ),
|
80 |
'activate_plugins',
|
81 |
+
'meta-box',
|
82 |
array( $this, 'render' )
|
83 |
);
|
84 |
+
add_action( "load-$about", array( $this, 'load_about' ) );
|
85 |
+
}
|
86 |
+
|
87 |
+
/**
|
88 |
+
* Functions and hooks for about page.
|
89 |
+
*/
|
90 |
+
public function load_about() {
|
91 |
+
$this->enqueue();
|
92 |
+
add_filter( 'admin_footer_text', array( $this, 'change_footer_text' ) );
|
93 |
}
|
94 |
|
95 |
/**
|
96 |
* Hide about page from the admin menu.
|
97 |
*/
|
98 |
public function hide_page() {
|
99 |
+
remove_submenu_page( $this->get_parent_menu(), 'meta-box' );
|
100 |
}
|
101 |
|
102 |
/**
|
109 |
<div id="post-body" class="metabox-holder columns-2">
|
110 |
<div id="post-body-content">
|
111 |
<div class="about-wrap">
|
112 |
+
<?php
|
113 |
+
include dirname( __FILE__ ) . '/sections/welcome.php';
|
114 |
+
include dirname( __FILE__ ) . '/sections/tabs.php';
|
115 |
+
include dirname( __FILE__ ) . '/sections/getting-started.php';
|
116 |
+
include dirname( __FILE__ ) . '/sections/extensions.php';
|
117 |
+
include dirname( __FILE__ ) . '/sections/support.php';
|
118 |
+
do_action( 'rwmb_about_tabs_content' );
|
119 |
+
?>
|
120 |
</div>
|
121 |
</div>
|
122 |
<div id="postbox-container-1" class="postbox-container">
|
123 |
+
<?php
|
124 |
+
include dirname( __FILE__ ) . '/sections/newsletter.php';
|
125 |
+
if ( ! $this->is_premium_user() ) {
|
126 |
+
include dirname( __FILE__ ) . '/sections/upgrade.php';
|
127 |
+
}
|
128 |
+
?>
|
129 |
</div>
|
130 |
</div>
|
131 |
</div>
|
137 |
* Enqueue CSS and JS.
|
138 |
*/
|
139 |
public function enqueue() {
|
140 |
+
wp_enqueue_style( 'meta-box-about', RWMB_URL . 'inc/about/css/about.css' );
|
141 |
+
wp_enqueue_script( 'meta-box-about', RWMB_URL . 'inc/about/js/about.js', array( 'jquery' ), '', true );
|
|
|
|
|
|
|
|
|
142 |
}
|
143 |
|
144 |
/**
|
166 |
*/
|
167 |
public function redirect( $plugin, $network_wide ) {
|
168 |
if ( ! $network_wide && 'meta-box/meta-box.php' === $plugin && ! $this->is_bundled() ) {
|
169 |
+
wp_safe_redirect( $this->get_menu_link() );
|
170 |
die;
|
171 |
}
|
172 |
}
|
173 |
|
174 |
+
/**
|
175 |
+
* Get link to the plugin admin menu.
|
176 |
+
*
|
177 |
+
* @return string
|
178 |
+
*/
|
179 |
+
protected function get_menu_link() {
|
180 |
+
$menu = $this->has_menu() ? 'admin.php?page=meta-box' : $this->get_parent_menu() . '?page=meta-box';
|
181 |
+
return admin_url( $menu );
|
182 |
+
}
|
183 |
+
|
184 |
+
/**
|
185 |
+
* Get default parent menu, which is Plugins.
|
186 |
+
*
|
187 |
+
* @return string
|
188 |
+
*/
|
189 |
+
protected function get_parent_menu() {
|
190 |
+
return 'plugins.php';
|
191 |
+
}
|
192 |
+
|
193 |
+
/**
|
194 |
+
* Check if the plugin has a top-level admin menu.
|
195 |
+
*
|
196 |
+
* @return bool
|
197 |
+
*/
|
198 |
+
protected function has_menu() {
|
199 |
+
return apply_filters( 'rwmb_admin_menu', false );
|
200 |
+
}
|
201 |
+
|
202 |
/**
|
203 |
* Check if Meta Box is bundled by TGM Activation Class.
|
204 |
*/
|
211 |
}
|
212 |
return false;
|
213 |
}
|
214 |
+
|
215 |
+
/**
|
216 |
+
* Check if current user is a premium user.
|
217 |
+
*
|
218 |
+
* @return bool
|
219 |
+
*/
|
220 |
+
protected function is_premium_user() {
|
221 |
+
$option = is_multisite() ? get_site_option( 'meta_box_updater' ) : get_option( 'meta_box_updater' );
|
222 |
+
if ( empty( $option['api_key'] ) ) {
|
223 |
+
return false;
|
224 |
+
}
|
225 |
+
if ( isset( $option['status'] ) && 'success' !== $option['status'] ) {
|
226 |
+
return false;
|
227 |
+
}
|
228 |
+
return true;
|
229 |
+
}
|
230 |
}
|
inc/about/css/{style.css → about.css}
RENAMED
@@ -1,5 +1,5 @@
|
|
1 |
-
.about-wrap .wp-badge {
|
2 |
-
background-image: url(../images/meta-box.
|
3 |
background-color: #fff;
|
4 |
color: #222;
|
5 |
text-transform: uppercase;
|
@@ -82,15 +82,15 @@
|
|
82 |
padding: 25px 20px;
|
83 |
}
|
84 |
.extension-inner svg {
|
85 |
-
width:
|
86 |
-
height:
|
87 |
-
margin: 8px
|
88 |
fill: #b4b9be;
|
89 |
}
|
90 |
.extension-info {
|
91 |
flex: 1;
|
92 |
}
|
93 |
-
.extension-info h3 {
|
94 |
margin: 0 0 5px;
|
95 |
font-size: 1.2em;
|
96 |
}
|
@@ -103,23 +103,43 @@
|
|
103 |
padding: 20px;
|
104 |
background: #f7f7f7;
|
105 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
@media (min-width: 1640px) {
|
107 |
-
.
|
108 |
width: 30.6%;
|
109 |
-
margin: 0 4% 4% 0;
|
110 |
}
|
111 |
-
.
|
112 |
margin-right: 4%;
|
113 |
}
|
114 |
-
.
|
|
|
|
|
|
|
115 |
margin-right: 0;
|
116 |
}
|
117 |
-
.
|
118 |
clear: left;
|
119 |
}
|
120 |
}
|
121 |
|
122 |
-
|
123 |
/* Right column */
|
124 |
#post-body.columns-2 #postbox-container-1 {
|
125 |
position: fixed;
|
@@ -127,6 +147,15 @@
|
|
127 |
top: 40px;
|
128 |
}
|
129 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
/* Newsletter */
|
131 |
.newsletter {
|
132 |
margin: 40px 0;
|
@@ -149,6 +178,14 @@
|
|
149 |
.newsletter p {
|
150 |
margin-top: 0;
|
151 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
|
153 |
/* Upgrade */
|
154 |
.upgrade {
|
1 |
+
.about-wrap.about-wrap .wp-badge {
|
2 |
+
background-image: url(../images/meta-box.svg);
|
3 |
background-color: #fff;
|
4 |
color: #222;
|
5 |
text-transform: uppercase;
|
82 |
padding: 25px 20px;
|
83 |
}
|
84 |
.extension-inner svg {
|
85 |
+
width: 36px;
|
86 |
+
height: 36px;
|
87 |
+
margin: 8px 15px 0 0;
|
88 |
fill: #b4b9be;
|
89 |
}
|
90 |
.extension-info {
|
91 |
flex: 1;
|
92 |
}
|
93 |
+
.extension-info.extension-info h3 {
|
94 |
margin: 0 0 5px;
|
95 |
font-size: 1.2em;
|
96 |
}
|
103 |
padding: 20px;
|
104 |
background: #f7f7f7;
|
105 |
}
|
106 |
+
|
107 |
+
/* Extensions tab: 2 columns */
|
108 |
+
.extension {
|
109 |
+
margin-bottom: 4%;
|
110 |
+
}
|
111 |
+
@media (min-width: 768px) {
|
112 |
+
.extension {
|
113 |
+
float: left;
|
114 |
+
width: 47.5%;
|
115 |
+
margin: 0 4% 4% 0;
|
116 |
+
}
|
117 |
+
.extension:nth-child(2n) {
|
118 |
+
margin-right: 0;
|
119 |
+
}
|
120 |
+
.extension:nth-child(2n+1) {
|
121 |
+
clear: left;
|
122 |
+
}
|
123 |
+
}
|
124 |
+
/* For large screen: 2 columns */
|
125 |
@media (min-width: 1640px) {
|
126 |
+
.extension {
|
127 |
width: 30.6%;
|
|
|
128 |
}
|
129 |
+
.extension:nth-child(2n) {
|
130 |
margin-right: 4%;
|
131 |
}
|
132 |
+
.extension:nth-child(2n+1) {
|
133 |
+
clear: none;
|
134 |
+
}
|
135 |
+
.extension:nth-child(3n) {
|
136 |
margin-right: 0;
|
137 |
}
|
138 |
+
.extension:nth-child(3n+1) {
|
139 |
clear: left;
|
140 |
}
|
141 |
}
|
142 |
|
|
|
143 |
/* Right column */
|
144 |
#post-body.columns-2 #postbox-container-1 {
|
145 |
position: fixed;
|
147 |
top: 40px;
|
148 |
}
|
149 |
|
150 |
+
@media (max-width: 1279px) {
|
151 |
+
#postbox-container-1 {
|
152 |
+
display: none;
|
153 |
+
}
|
154 |
+
#poststuff #post-body.columns-2 {
|
155 |
+
margin-right: 0;
|
156 |
+
}
|
157 |
+
}
|
158 |
+
|
159 |
/* Newsletter */
|
160 |
.newsletter {
|
161 |
margin: 40px 0;
|
178 |
.newsletter p {
|
179 |
margin-top: 0;
|
180 |
}
|
181 |
+
.newsletter.newsletter input,
|
182 |
+
.newsletter.newsletter button {
|
183 |
+
margin-top: 5px;
|
184 |
+
}
|
185 |
+
.newsletter.newsletter input {
|
186 |
+
width: 145px;
|
187 |
+
padding: 5px;
|
188 |
+
}
|
189 |
|
190 |
/* Upgrade */
|
191 |
.upgrade {
|
inc/about/images/meta-box.png
DELETED
Binary file
|
inc/about/images/meta-box.svg
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="utf-8"?>
|
2 |
+
<svg viewBox="227 227 46 46" width="46" height="46" xmlns="http://www.w3.org/2000/svg">
|
3 |
+
<rect style="" x="227" y="227" width="46" height="46" rx="4" ry="4"/>
|
4 |
+
<path d="M 256.873 255.508 L 257.283 246.088 L 257.193 246.078 L 251.483 261.868 L 248.613 261.868 L 242.933 246.138 L 242.843 246.148 L 243.253 255.508 L 243.253 258.868 L 245.533 259.308 L 245.533 261.868 L 236.703 261.868 L 236.703 259.308 L 238.973 258.868 L 238.973 243.558 L 236.703 243.118 L 236.703 240.538 L 238.973 240.538 L 244.553 240.538 L 249.993 256.258 L 250.073 256.258 L 255.553 240.538 L 263.433 240.538 L 263.433 243.118 L 261.153 243.558 L 261.153 258.868 L 263.433 259.308 L 263.433 261.868 L 254.603 261.868 L 254.603 259.308 L 256.873 258.868 L 256.873 255.508 Z" style="fill:#fff"/>
|
5 |
+
</svg>
|
inc/about/js/{script.js → about.js}
RENAMED
File without changes
|
inc/about/sections/extensions.php
CHANGED
@@ -8,322 +8,344 @@
|
|
8 |
?>
|
9 |
<div id="extensions" class="gt-tab-pane">
|
10 |
<p class="about-description">
|
11 |
-
<?php esc_html_e( 'Extend custom fields in WordPress well beyond what others would ever consider ordinary!', 'meta-box' );
|
12 |
-
|
13 |
-
<div class="
|
14 |
-
<div class="
|
15 |
-
<div class="
|
16 |
-
<
|
17 |
-
|
18 |
-
<
|
19 |
-
|
20 |
-
<p><?php esc_html_e( 'Drag and drop your custom fields into place without a single line of code.', 'meta-box' ); ?></p>
|
21 |
-
</div>
|
22 |
-
</div>
|
23 |
-
<div class="extension-action">
|
24 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-builder/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
25 |
</div>
|
26 |
</div>
|
27 |
-
<div class="
|
28 |
-
<
|
29 |
-
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1596 476q14 14 28 36h-472v-472q22 14 36 28zm-476 164h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544q0 40 28 68t68 28zm160 736v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zm0-256v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zm0-256v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23z" /></svg>
|
30 |
-
<div class="extension-info">
|
31 |
-
<h3>MB Custom Post Type</h3>
|
32 |
-
<p><?php esc_html_e( 'Create and manage custom post types easily in WordPress with an easy-to-use interface.', 'meta-box' ); ?></p>
|
33 |
-
</div>
|
34 |
-
</div>
|
35 |
-
<div class="extension-action">
|
36 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/custom-post-type/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
37 |
-
</div>
|
38 |
</div>
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
</div>
|
47 |
-
<div class="extension-action">
|
48 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-group/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
49 |
</div>
|
50 |
</div>
|
51 |
-
<div class="
|
52 |
-
<
|
53 |
-
<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1152 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zm512-109v222q0 12-8 23t-20 13l-185 28q-19 54-39 91 35 50 107 138 10 12 10 25t-9 23q-27 37-99 108t-94 71q-12 0-26-9l-138-108q-44 23-91 38-16 136-29 186-7 28-36 28h-222q-14 0-24.5-8.5t-11.5-21.5l-28-184q-49-16-90-37l-141 107q-10 9-25 9-14 0-25-11-126-114-165-168-7-10-7-23 0-12 8-23 15-21 51-66.5t54-70.5q-27-50-41-99l-183-27q-13-2-21-12.5t-8-23.5v-222q0-12 8-23t19-13l186-28q14-46 39-92-40-57-107-138-10-12-10-24 0-10 9-23 26-36 98.5-107.5t94.5-71.5q13 0 26 10l138 107q44-23 91-38 16-136 29-186 7-28 36-28h222q14 0 24.5 8.5t11.5 21.5l28 184q49 16 90 37l142-107q9-9 24-9 13 0 25 10 129 119 165 170 7 8 7 22 0 12-8 23-15 21-51 66.5t-54 70.5q26 50 41 98l183 28q13 2 21 12.5t8 23.5z" /></svg>
|
54 |
-
<div class="extension-info">
|
55 |
-
<h3>MB Settings Page</h3>
|
56 |
-
<p><?php esc_html_e( 'Create a powerful settings page for your theme, plugin or website.', 'meta-box' ); ?></p>
|
57 |
-
</div>
|
58 |
-
</div>
|
59 |
-
<div class="extension-action">
|
60 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-settings-page/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
61 |
-
</div>
|
62 |
</div>
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
</div>
|
71 |
-
<div class="extension-action">
|
72 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-conditional-logic/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
73 |
</div>
|
74 |
</div>
|
75 |
-
<div class="
|
76 |
-
<
|
77 |
-
<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1703 478q40 57 18 129l-275 906q-19 64-76.5 107.5t-122.5 43.5h-923q-77 0-148.5-53.5t-99.5-131.5q-24-67-2-127 0-4 3-27t4-37q1-8-3-21.5t-3-19.5q2-11 8-21t16.5-23.5 16.5-23.5q23-38 45-91.5t30-91.5q3-10 .5-30t-.5-28q3-11 17-28t17-23q21-36 42-92t25-90q1-9-2.5-32t.5-28q4-13 22-30.5t22-22.5q19-26 42.5-84.5t27.5-96.5q1-8-3-25.5t-2-26.5q2-8 9-18t18-23 17-21q8-12 16.5-30.5t15-35 16-36 19.5-32 26.5-23.5 36-11.5 47.5 5.5l-1 3q38-9 51-9h761q74 0 114 56t18 130l-274 906q-36 119-71.5 153.5t-128.5 34.5h-869q-27 0-38 15-11 16-1 43 24 70 144 70h923q29 0 56-15.5t35-41.5l300-987q7-22 5-57 38 15 59 43zm-1064 2q-4 13 2 22.5t20 9.5h608q13 0 25.5-9.5t16.5-22.5l21-64q4-13-2-22.5t-20-9.5h-608q-13 0-25.5 9.5t-16.5 22.5zm-83 256q-4 13 2 22.5t20 9.5h608q13 0 25.5-9.5t16.5-22.5l21-64q4-13-2-22.5t-20-9.5h-608q-13 0-25.5 9.5t-16.5 22.5z" /></svg>
|
78 |
-
<div class="extension-info">
|
79 |
-
<h3>MB Term Meta</h3>
|
80 |
-
<p><?php esc_html_e( 'Easily add custom fields to categories, tags or any custom taxonomy.', 'meta-box' ); ?></p>
|
81 |
-
</div>
|
82 |
-
</div>
|
83 |
-
<div class="extension-action">
|
84 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-term-meta/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
85 |
-
</div>
|
86 |
</div>
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
</div>
|
95 |
-
<div class="extension-action">
|
96 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-user-meta/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
97 |
</div>
|
98 |
</div>
|
99 |
-
<div class="
|
100 |
-
<
|
101 |
-
<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M381 1620q0 80-54.5 126t-135.5 46q-106 0-172-66l57-88q49 45 106 45 29 0 50.5-14.5t21.5-42.5q0-64-105-56l-26-56q8-10 32.5-43.5t42.5-54 37-38.5v-1q-16 0-48.5 1t-48.5 1v53h-106v-152h333v88l-95 115q51 12 81 49t30 88zm2-627v159h-362q-6-36-6-54 0-51 23.5-93t56.5-68 66-47.5 56.5-43.5 23.5-45q0-25-14.5-38.5t-39.5-13.5q-46 0-81 58l-85-59q24-51 71.5-79.5t105.5-28.5q73 0 123 41.5t50 112.5q0 50-34 91.5t-75 64.5-75.5 50.5-35.5 52.5h127v-60h105zm1409 319v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zm-1408-899v99h-335v-99h107q0-41 .5-121.5t.5-121.5v-12h-2q-8 17-50 54l-71-76 136-127h106v404h108zm1408 387v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z" /></svg>
|
102 |
-
<div class="extension-info">
|
103 |
-
<h3>MB Frontend Submission</h3>
|
104 |
-
<p><?php esc_html_e( 'Create frontend forms for users to submit custom content. Embed everywhere with shortcode.', 'meta-box' ); ?></p>
|
105 |
-
</div>
|
106 |
-
</div>
|
107 |
-
<div class="extension-action">
|
108 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-frontend-submission/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
109 |
-
</div>
|
110 |
</div>
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
</div>
|
119 |
-
<div class="extension-action">
|
120 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-tabs/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
121 |
</div>
|
122 |
</div>
|
123 |
-
<div class="
|
124 |
-
<
|
125 |
-
<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M576 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm128-320v1088q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1344q66 0 113 47t47 113z" /></svg>
|
126 |
-
<div class="extension-info">
|
127 |
-
<h3>MB Custom Table</h3>
|
128 |
-
<p><?php esc_html_e( 'Save custom fields data to custom table instead of the default meta tables. Reduce database size and increase performance.', 'meta-box' ); ?></p>
|
129 |
-
</div>
|
130 |
-
</div>
|
131 |
-
<div class="extension-action">
|
132 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-custom-table/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
133 |
-
</div>
|
134 |
</div>
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
</div>
|
143 |
-
<div class="extension-action">
|
144 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-rest-api/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
145 |
</div>
|
146 |
</div>
|
147 |
-
<div class="
|
148 |
-
<
|
149 |
-
<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1792 1184v192q0 13-9.5 22.5t-22.5 9.5h-1376v192q0 13-9.5 22.5t-22.5 9.5q-12 0-24-10l-319-320q-9-9-9-22 0-14 9-23l320-320q9-9 23-9 13 0 22.5 9.5t9.5 22.5v192h1376q13 0 22.5 9.5t9.5 22.5zm0-544q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-1376q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1376v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23z" /></svg>
|
150 |
-
<div class="extension-info">
|
151 |
-
<h3>MB Relationships</h3>
|
152 |
-
<p><?php esc_html_e( 'A lightweight WordPress plugin for creating many-to-many relationships between posts, terms and users.', 'meta-box' ); ?></p>
|
153 |
-
</div>
|
154 |
-
</div>
|
155 |
-
<div class="extension-action">
|
156 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-relationships/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
157 |
-
</div>
|
158 |
</div>
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
</div>
|
167 |
-
<div class="extension-action">
|
168 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-facetwp-integrator/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
169 |
</div>
|
170 |
</div>
|
171 |
-
<div class="
|
172 |
-
<
|
173 |
-
<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22-17 2-30.5-9t-17.5-29v-1q-3-4-.5-12t2-10 4.5-9.5l6-9 7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-130 71-248.5t191-204.5 286-136.5 348-50.5q244 0 450 85.5t326 233 120 321.5z" /></svg>
|
174 |
-
<div class="extension-info">
|
175 |
-
<h3>MB Comment Meta</h3>
|
176 |
-
<p><?php esc_html_e( 'Add custom fields to comments in WordPress. Support all field types and options.', 'meta-box' ); ?></p>
|
177 |
-
</div>
|
178 |
-
</div>
|
179 |
-
<div class="extension-action">
|
180 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-comment-meta/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
181 |
-
</div>
|
182 |
</div>
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
</div>
|
191 |
-
<div class="extension-action">
|
192 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-revision/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
193 |
</div>
|
194 |
</div>
|
195 |
-
<div class="
|
196 |
-
<
|
197 |
-
<svg width="1792" height="1792" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1593 349l-640 1280q-17 35-57 35-5 0-15-2-22-5-35.5-22.5t-13.5-39.5v-576h-576q-22 0-39.5-13.5t-22.5-35.5 4-42 29-30l1280-640q13-7 29-7 27 0 45 19 15 14 18.5 34.5t-6.5 39.5z" /></svg>
|
198 |
-
<div class="extension-info">
|
199 |
-
<h3>Meta Box Geolocation</h3>
|
200 |
-
<p><?php esc_html_e( 'Automatically and instantly populate location data with the power of Google Maps Geolocation API.', 'meta-box' ); ?></p>
|
201 |
-
</div>
|
202 |
-
</div>
|
203 |
-
<div class="extension-action">
|
204 |
-
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-geolocation/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
205 |
-
</div>
|
206 |
</div>
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
</div>
|
215 |
-
|
216 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
</div>
|
218 |
</div>
|
219 |
-
<div class="
|
220 |
-
<
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
|
|
|
|
|
|
226 |
</div>
|
227 |
-
|
228 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
</div>
|
230 |
</div>
|
231 |
-
<div class="
|
232 |
-
<
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
|
|
|
|
|
|
238 |
</div>
|
239 |
-
|
240 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
</div>
|
242 |
</div>
|
243 |
-
<div class="
|
244 |
-
<
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
|
|
|
|
|
|
250 |
</div>
|
251 |
-
|
252 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
</div>
|
254 |
</div>
|
255 |
-
<div class="
|
256 |
-
<
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
|
|
|
|
|
|
262 |
</div>
|
263 |
-
|
264 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
</div>
|
266 |
</div>
|
267 |
-
<div class="
|
268 |
-
<
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
|
|
|
|
|
|
274 |
</div>
|
275 |
-
|
276 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
</div>
|
278 |
</div>
|
279 |
-
<div class="
|
280 |
-
<
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
|
|
|
|
|
|
286 |
</div>
|
287 |
-
|
288 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
289 |
</div>
|
290 |
</div>
|
291 |
-
<div class="
|
292 |
-
<
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
|
|
|
|
|
|
298 |
</div>
|
299 |
-
|
300 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
</div>
|
302 |
</div>
|
303 |
-
<div class="
|
304 |
-
<
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
|
|
|
|
|
|
310 |
</div>
|
311 |
-
|
312 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
</div>
|
314 |
</div>
|
315 |
-
<div class="
|
316 |
-
<
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
|
|
|
|
|
|
322 |
</div>
|
323 |
-
|
324 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
</div>
|
326 |
</div>
|
|
|
|
|
|
|
327 |
</div>
|
328 |
</div>
|
329 |
</div>
|
8 |
?>
|
9 |
<div id="extensions" class="gt-tab-pane">
|
10 |
<p class="about-description">
|
11 |
+
<?php esc_html_e( 'Extend custom fields in WordPress well beyond what others would ever consider ordinary! Save over 70% with our extensions bundles.', 'meta-box' ); ?> <a target="_blank" href="https://metabox.io/pricing/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'View Bundles', 'meta-box' ); ?> →</a>
|
12 |
+
</p>
|
13 |
+
<div class="extensions wp-clearfix">
|
14 |
+
<div class="extension">
|
15 |
+
<div class="extension-inner">
|
16 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M736 1440q0 12-10 24l-319 319q-10 9-23 9-12 0-23-9l-320-320q-15-16-7-35 8-20 30-20h192v-1376q0-14 9-23t23-9h192q14 0 23 9t9 23v1376h192q14 0 23 9t9 23zm1056 128v192q0 14-9 23t-23 9h-832q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h832q14 0 23 9t9 23zm-192-512v192q0 14-9 23t-23 9h-640q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h640q14 0 23 9t9 23zm-192-512v192q0 14-9 23t-23 9h-448q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h448q14 0 23 9t9 23zm-192-512v192q0 14-9 23t-23 9h-256q-14 0-23-9t-9-23v-192q0-14 9-23t23-9h256q14 0 23 9t9 23z"/></svg>
|
17 |
+
<div class="extension-info">
|
18 |
+
<h3>Meta Box Builder</h3>
|
19 |
+
<p><?php esc_html_e( 'Drag and drop your custom fields into place without a single line of code.', 'meta-box' ); ?></p>
|
|
|
|
|
|
|
|
|
|
|
20 |
</div>
|
21 |
</div>
|
22 |
+
<div class="extension-action">
|
23 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-builder/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
</div>
|
25 |
+
</div>
|
26 |
+
<div class="extension">
|
27 |
+
<div class="extension-inner">
|
28 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1596 476q14 14 28 36h-472v-472q22 14 36 28zm-476 164h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544q0 40 28 68t68 28zm160 736v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zm0-256v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zm0-256v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23z" /></svg>
|
29 |
+
<div class="extension-info">
|
30 |
+
<h3>MB Custom Post Type</h3>
|
31 |
+
<p><?php esc_html_e( 'Create and manage custom post types easily in WordPress with an easy-to-use interface.', 'meta-box' ); ?></p>
|
|
|
|
|
|
|
32 |
</div>
|
33 |
</div>
|
34 |
+
<div class="extension-action">
|
35 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/custom-post-type/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
</div>
|
37 |
+
</div>
|
38 |
+
<div class="extension">
|
39 |
+
<div class="extension-inner">
|
40 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M512 1248v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm1280 512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zm-1280-1024v192q0 40-28 68t-68 28h-320q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h320q40 0 68 28t28 68zm1280 512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68zm0-512v192q0 40-28 68t-68 28h-960q-40 0-68-28t-28-68v-192q0-40 28-68t68-28h960q40 0 68 28t28 68z" /></svg>
|
41 |
+
<div class="extension-info">
|
42 |
+
<h3>Meta Box Group</h3>
|
43 |
+
<p><?php esc_html_e( 'Create repeatable groups of custom fields for better appearance and structure.', 'meta-box' ); ?></p>
|
|
|
|
|
|
|
44 |
</div>
|
45 |
</div>
|
46 |
+
<div class="extension-action">
|
47 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-group/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
</div>
|
49 |
+
</div>
|
50 |
+
<div class="extension">
|
51 |
+
<div class="extension-inner">
|
52 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1152 896q0-106-75-181t-181-75-181 75-75 181 75 181 181 75 181-75 75-181zm512-109v222q0 12-8 23t-20 13l-185 28q-19 54-39 91 35 50 107 138 10 12 10 25t-9 23q-27 37-99 108t-94 71q-12 0-26-9l-138-108q-44 23-91 38-16 136-29 186-7 28-36 28h-222q-14 0-24.5-8.5t-11.5-21.5l-28-184q-49-16-90-37l-141 107q-10 9-25 9-14 0-25-11-126-114-165-168-7-10-7-23 0-12 8-23 15-21 51-66.5t54-70.5q-27-50-41-99l-183-27q-13-2-21-12.5t-8-23.5v-222q0-12 8-23t19-13l186-28q14-46 39-92-40-57-107-138-10-12-10-24 0-10 9-23 26-36 98.5-107.5t94.5-71.5q13 0 26 10l138 107q44-23 91-38 16-136 29-186 7-28 36-28h222q14 0 24.5 8.5t11.5 21.5l28 184q49 16 90 37l142-107q9-9 24-9 13 0 25 10 129 119 165 170 7 8 7 22 0 12-8 23-15 21-51 66.5t-54 70.5q26 50 41 98l183 28q13 2 21 12.5t8 23.5z" /></svg>
|
53 |
+
<div class="extension-info">
|
54 |
+
<h3>MB Settings Page</h3>
|
55 |
+
<p><?php esc_html_e( 'Create a powerful settings page for your theme, plugin or website.', 'meta-box' ); ?></p>
|
|
|
|
|
|
|
56 |
</div>
|
57 |
</div>
|
58 |
+
<div class="extension-action">
|
59 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-settings-page/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
</div>
|
61 |
+
</div>
|
62 |
+
<div class="extension">
|
63 |
+
<div class="extension-inner">
|
64 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1792 1184v192q0 13-9.5 22.5t-22.5 9.5h-1376v192q0 13-9.5 22.5t-22.5 9.5q-12 0-24-10l-319-320q-9-9-9-22 0-14 9-23l320-320q9-9 23-9 13 0 22.5 9.5t9.5 22.5v192h1376q13 0 22.5 9.5t9.5 22.5zm0-544q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-1376q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1376v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23z" /></svg>
|
65 |
+
<div class="extension-info">
|
66 |
+
<h3>Meta Box Conditional Logic</h3>
|
67 |
+
<p><?php esc_html_e( 'Control the visibility of meta boxes and fields or even HTML elements with ease.', 'meta-box' ); ?></p>
|
|
|
|
|
|
|
68 |
</div>
|
69 |
</div>
|
70 |
+
<div class="extension-action">
|
71 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-conditional-logic/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
</div>
|
73 |
+
</div>
|
74 |
+
<div class="extension">
|
75 |
+
<div class="extension-inner">
|
76 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1703 478q40 57 18 129l-275 906q-19 64-76.5 107.5t-122.5 43.5h-923q-77 0-148.5-53.5t-99.5-131.5q-24-67-2-127 0-4 3-27t4-37q1-8-3-21.5t-3-19.5q2-11 8-21t16.5-23.5 16.5-23.5q23-38 45-91.5t30-91.5q3-10 .5-30t-.5-28q3-11 17-28t17-23q21-36 42-92t25-90q1-9-2.5-32t.5-28q4-13 22-30.5t22-22.5q19-26 42.5-84.5t27.5-96.5q1-8-3-25.5t-2-26.5q2-8 9-18t18-23 17-21q8-12 16.5-30.5t15-35 16-36 19.5-32 26.5-23.5 36-11.5 47.5 5.5l-1 3q38-9 51-9h761q74 0 114 56t18 130l-274 906q-36 119-71.5 153.5t-128.5 34.5h-869q-27 0-38 15-11 16-1 43 24 70 144 70h923q29 0 56-15.5t35-41.5l300-987q7-22 5-57 38 15 59 43zm-1064 2q-4 13 2 22.5t20 9.5h608q13 0 25.5-9.5t16.5-22.5l21-64q4-13-2-22.5t-20-9.5h-608q-13 0-25.5 9.5t-16.5 22.5zm-83 256q-4 13 2 22.5t20 9.5h608q13 0 25.5-9.5t16.5-22.5l21-64q4-13-2-22.5t-20-9.5h-608q-13 0-25.5 9.5t-16.5 22.5z" /></svg>
|
77 |
+
<div class="extension-info">
|
78 |
+
<h3>MB Term Meta</h3>
|
79 |
+
<p><?php esc_html_e( 'Easily add custom fields to categories, tags or any custom taxonomy.', 'meta-box' ); ?></p>
|
|
|
|
|
|
|
80 |
</div>
|
81 |
</div>
|
82 |
+
<div class="extension-action">
|
83 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-term-meta/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
</div>
|
85 |
+
</div>
|
86 |
+
<div class="extension">
|
87 |
+
<div class="extension-inner">
|
88 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1536 1399q0 109-62.5 187t-150.5 78h-854q-88 0-150.5-78t-62.5-187q0-85 8.5-160.5t31.5-152 58.5-131 94-89 134.5-34.5q131 128 313 128t313-128q76 0 134.5 34.5t94 89 58.5 131 31.5 152 8.5 160.5zm-256-887q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5z" /></svg>
|
89 |
+
<div class="extension-info">
|
90 |
+
<h3>MB User Meta</h3>
|
91 |
+
<p><?php esc_html_e( 'Add custom fields to user profile (user meta) quickly with simple syntax.', 'meta-box' ); ?></p>
|
|
|
|
|
|
|
92 |
</div>
|
93 |
</div>
|
94 |
+
<div class="extension-action">
|
95 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-user-meta/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
</div>
|
97 |
+
</div>
|
98 |
+
<div class="extension">
|
99 |
+
<div class="extension-inner">
|
100 |
+
<svg viewBox="0 0 2048 1792" xmlns="http://www.w3.org/2000/svg"><path d="M657 896q-162 5-265 128h-134q-82 0-138-40.5t-56-118.5q0-353 124-353 6 0 43.5 21t97.5 42.5 119 21.5q67 0 133-23-5 37-5 66 0 139 81 256zm1071 637q0 120-73 189.5t-194 69.5h-874q-121 0-194-69.5t-73-189.5q0-53 3.5-103.5t14-109 26.5-108.5 43-97.5 62-81 85.5-53.5 111.5-20q10 0 43 21.5t73 48 107 48 135 21.5 135-21.5 107-48 73-48 43-21.5q61 0 111.5 20t85.5 53.5 62 81 43 97.5 26.5 108.5 14 109 3.5 103.5zm-1024-1277q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181zm704 384q0 159-112.5 271.5t-271.5 112.5-271.5-112.5-112.5-271.5 112.5-271.5 271.5-112.5 271.5 112.5 112.5 271.5zm576 225q0 78-56 118.5t-138 40.5h-134q-103-123-265-128 81-117 81-256 0-29-5-66 66 23 133 23 59 0 119-21.5t97.5-42.5 43.5-21q124 0 124 353zm-128-609q0 106-75 181t-181 75-181-75-75-181 75-181 181-75 181 75 75 181z" /></svg>
|
101 |
+
<div class="extension-info">
|
102 |
+
<h3>MB User Profile</h3>
|
103 |
+
<p><?php esc_html_e( 'Create register, login and edit user profile forms in the frontend. Embed everywhere with shortcodes.', 'meta-box' ); ?></p>
|
|
|
|
|
|
|
104 |
</div>
|
105 |
</div>
|
106 |
+
<div class="extension-action">
|
107 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-user-profile/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
</div>
|
109 |
+
</div>
|
110 |
+
<div class="extension">
|
111 |
+
<div class="extension-inner">
|
112 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M381 1620q0 80-54.5 126t-135.5 46q-106 0-172-66l57-88q49 45 106 45 29 0 50.5-14.5t21.5-42.5q0-64-105-56l-26-56q8-10 32.5-43.5t42.5-54 37-38.5v-1q-16 0-48.5 1t-48.5 1v53h-106v-152h333v88l-95 115q51 12 81 49t30 88zm2-627v159h-362q-6-36-6-54 0-51 23.5-93t56.5-68 66-47.5 56.5-43.5 23.5-45q0-25-14.5-38.5t-39.5-13.5q-46 0-81 58l-85-59q24-51 71.5-79.5t105.5-28.5q73 0 123 41.5t50 112.5q0 50-34 91.5t-75 64.5-75.5 50.5-35.5 52.5h127v-60h105zm1409 319v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zm-1408-899v99h-335v-99h107q0-41 .5-121.5t.5-121.5v-12h-2q-8 17-50 54l-71-76 136-127h106v404h108zm1408 387v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-14 9-23t23-9h1216q13 0 22.5 9.5t9.5 22.5zm0-512v192q0 13-9.5 22.5t-22.5 9.5h-1216q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1216q13 0 22.5 9.5t9.5 22.5z" /></svg>
|
113 |
+
<div class="extension-info">
|
114 |
+
<h3>MB Frontend Submission</h3>
|
115 |
+
<p><?php esc_html_e( 'Create frontend forms for users to submit custom content. Embed everywhere with shortcode.', 'meta-box' ); ?></p>
|
116 |
</div>
|
117 |
+
</div>
|
118 |
+
<div class="extension-action">
|
119 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-frontend-submission/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
120 |
+
</div>
|
121 |
+
</div>
|
122 |
+
<div class="extension">
|
123 |
+
<div class="extension-inner">
|
124 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1600 1312v-704q0-40-28-68t-68-28h-704q-40 0-68-28t-28-68v-64q0-40-28-68t-68-28h-320q-40 0-68 28t-28 68v960q0 40 28 68t68 28h1216q40 0 68-28t28-68zm128-704v704q0 92-66 158t-158 66h-1216q-92 0-158-66t-66-158v-960q0-92 66-158t158-66h320q92 0 158 66t66 158v32h672q92 0 158 66t66 158z" /></svg>
|
125 |
+
<div class="extension-info">
|
126 |
+
<h3>Meta Box Tabs</h3>
|
127 |
+
<p><?php esc_html_e( 'Add as many custom fields as you want and organize them into tabs.', 'meta-box' ); ?></p>
|
128 |
</div>
|
129 |
</div>
|
130 |
+
<div class="extension-action">
|
131 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-tabs/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
132 |
+
</div>
|
133 |
+
</div>
|
134 |
+
<div class="extension">
|
135 |
+
<div class="extension-inner">
|
136 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M576 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm128-320v1088q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1344q66 0 113 47t47 113z" /></svg>
|
137 |
+
<div class="extension-info">
|
138 |
+
<h3>MB Custom Table</h3>
|
139 |
+
<p><?php esc_html_e( 'Save custom fields data to custom table instead of the default meta tables. Reduce database size and increase performance.', 'meta-box' ); ?></p>
|
140 |
</div>
|
141 |
+
</div>
|
142 |
+
<div class="extension-action">
|
143 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-custom-table/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
144 |
+
</div>
|
145 |
+
</div>
|
146 |
+
<div class="extension">
|
147 |
+
<div class="extension-inner">
|
148 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M672 1472q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zm0-1152q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zm640 128q0-40-28-68t-68-28-68 28-28 68 28 68 68 28 68-28 28-68zm96 0q0 52-26 96.5t-70 69.5q-2 287-226 414-67 38-203 81-128 40-169.5 71t-41.5 100v26q44 25 70 69.5t26 96.5q0 80-56 136t-136 56-136-56-56-136q0-52 26-96.5t70-69.5v-820q-44-25-70-69.5t-26-96.5q0-80 56-136t136-56 136 56 56 136q0 52-26 96.5t-70 69.5v497q54-26 154-57 55-17 87.5-29.5t70.5-31 59-39.5 40.5-51 28-69.5 8.5-91.5q-44-25-70-69.5t-26-96.5q0-80 56-136t136-56 136 56 56 136z" /></svg>
|
149 |
+
<div class="extension-info">
|
150 |
+
<h3>MB Rest API</h3>
|
151 |
+
<p><?php esc_html_e( 'Pull all meta value from posts, terms into the WP REST API responses.', 'meta-box' ); ?></p>
|
152 |
</div>
|
153 |
</div>
|
154 |
+
<div class="extension-action">
|
155 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-rest-api/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
156 |
+
</div>
|
157 |
+
</div>
|
158 |
+
<div class="extension">
|
159 |
+
<div class="extension-inner">
|
160 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1792 1184v192q0 13-9.5 22.5t-22.5 9.5h-1376v192q0 13-9.5 22.5t-22.5 9.5q-12 0-24-10l-319-320q-9-9-9-22 0-14 9-23l320-320q9-9 23-9 13 0 22.5 9.5t9.5 22.5v192h1376q13 0 22.5 9.5t9.5 22.5zm0-544q0 14-9 23l-320 320q-9 9-23 9-13 0-22.5-9.5t-9.5-22.5v-192h-1376q-13 0-22.5-9.5t-9.5-22.5v-192q0-13 9.5-22.5t22.5-9.5h1376v-192q0-14 9-23t23-9q12 0 24 10l319 319q9 9 9 23z" /></svg>
|
161 |
+
<div class="extension-info">
|
162 |
+
<h3>MB Relationships</h3>
|
163 |
+
<p><?php esc_html_e( 'A lightweight WordPress plugin for creating many-to-many relationships between posts, terms and users.', 'meta-box' ); ?></p>
|
164 |
</div>
|
165 |
+
</div>
|
166 |
+
<div class="extension-action">
|
167 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-relationships/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
168 |
+
</div>
|
169 |
+
</div>
|
170 |
+
<div class="extension">
|
171 |
+
<div class="extension-inner">
|
172 |
+
<svg viewBox="0 0 2048 1792" xmlns="http://www.w3.org/2000/svg"><path d="M212 768l623 665-300-665h-323zm812 772l349-772h-698zm-486-900l204-384h-262l-288 384h346zm675 793l623-665h-323zm-530-793h682l-204-384h-274zm827 0h346l-288-384h-262zm141-486l384 512q14 18 13 41.5t-17 40.5l-960 1024q-18 20-47 20t-47-20l-960-1024q-16-17-17-40.5t13-41.5l384-512q18-26 51-26h1152q33 0 51 26z" /></svg>
|
173 |
+
<div class="extension-info">
|
174 |
+
<h3>Meta Box – FacetWP Integrator</h3>
|
175 |
+
<p><?php esc_html_e( 'Integrates Meta Box and FacetWP, makes custom fields searchable and filterable in the frontend.', 'meta-box' ); ?></p>
|
176 |
</div>
|
177 |
</div>
|
178 |
+
<div class="extension-action">
|
179 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-facetwp-integrator/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
180 |
+
</div>
|
181 |
+
</div>
|
182 |
+
<div class="extension">
|
183 |
+
<div class="extension-inner">
|
184 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1755 453q37 38 37 90.5t-37 90.5l-401 400 150 150-160 160q-163 163-389.5 186.5t-411.5-100.5l-362 362h-181v-181l362-362q-124-185-100.5-411.5t186.5-389.5l160-160 150 150 400-401q38-37 91-37t90 37 37 90.5-37 90.5l-400 401 234 234 401-400q38-37 91-37t90 37z" /></svg>
|
185 |
+
<div class="extension-info">
|
186 |
+
<h3>Meta Box – Beaver Themer Integrator</h3>
|
187 |
+
<p><?php esc_html_e( 'Select and show custom fields created by the Meta Box plugin in the Beaver Themer field connection.', 'meta-box' ); ?></p>
|
188 |
</div>
|
189 |
+
</div>
|
190 |
+
<div class="extension-action">
|
191 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-beaver-themer-integrator/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
192 |
+
</div>
|
193 |
+
</div>
|
194 |
+
<div class="extension">
|
195 |
+
<div class="extension-inner">
|
196 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1792 896q0 174-120 321.5t-326 233-450 85.5q-70 0-145-8-198 175-460 242-49 14-114 22-17 2-30.5-9t-17.5-29v-1q-3-4-.5-12t2-10 4.5-9.5l6-9 7-8.5 8-9q7-8 31-34.5t34.5-38 31-39.5 32.5-51 27-59 26-76q-157-89-247.5-220t-90.5-281q0-130 71-248.5t191-204.5 286-136.5 348-50.5q244 0 450 85.5t326 233 120 321.5z" /></svg>
|
197 |
+
<div class="extension-info">
|
198 |
+
<h3>MB Comment Meta</h3>
|
199 |
+
<p><?php esc_html_e( 'Add custom fields to comments in WordPress. Support all field types and options.', 'meta-box' ); ?></p>
|
200 |
</div>
|
201 |
</div>
|
202 |
+
<div class="extension-action">
|
203 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-comment-meta/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
204 |
+
</div>
|
205 |
+
</div>
|
206 |
+
<div class="extension">
|
207 |
+
<div class="extension-inner">
|
208 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1664 256v448q0 26-19 45t-45 19h-448q-42 0-59-40-17-39 14-69l138-138q-148-137-349-137-104 0-198.5 40.5t-163.5 109.5-109.5 163.5-40.5 198.5 40.5 198.5 109.5 163.5 163.5 109.5 198.5 40.5q119 0 225-52t179-147q7-10 23-12 15 0 25 9l137 138q9 8 9.5 20.5t-7.5 22.5q-109 132-264 204.5t-327 72.5q-156 0-298-61t-245-164-164-245-61-298 61-298 164-245 245-164 298-61q147 0 284.5 55.5t244.5 156.5l130-129q29-31 70-14 39 17 39 59z" /></svg>
|
209 |
+
<div class="extension-info">
|
210 |
+
<h3>MB Revision</h3>
|
211 |
+
<p><?php esc_html_e( 'Track changes of custom fields with WordPress revision. Save, compare, restore the changes easily.', 'meta-box' ); ?></p>
|
212 |
</div>
|
213 |
+
</div>
|
214 |
+
<div class="extension-action">
|
215 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-revision/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
216 |
+
</div>
|
217 |
+
</div>
|
218 |
+
<div class="extension">
|
219 |
+
<div class="extension-inner">
|
220 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1593 349l-640 1280q-17 35-57 35-5 0-15-2-22-5-35.5-22.5t-13.5-39.5v-576h-576q-22 0-39.5-13.5t-22.5-35.5 4-42 29-30l1280-640q13-7 29-7 27 0 45 19 15 14 18.5 34.5t-6.5 39.5z" /></svg>
|
221 |
+
<div class="extension-info">
|
222 |
+
<h3>Meta Box Geolocation</h3>
|
223 |
+
<p><?php esc_html_e( 'Automatically and instantly populate location data with the power of Google Maps Geolocation API.', 'meta-box' ); ?></p>
|
224 |
</div>
|
225 |
</div>
|
226 |
+
<div class="extension-action">
|
227 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-geolocation/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
228 |
+
</div>
|
229 |
+
</div>
|
230 |
+
<div class="extension">
|
231 |
+
<div class="extension-inner">
|
232 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M576 1376v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm-512-768v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm512 384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm0-384v-192q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v192q0 14 9 23t23 9h320q14 0 23-9t9-23zm128-320v1088q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1344q66 0 113 47t47 113z" /></svg>
|
233 |
+
<div class="extension-info">
|
234 |
+
<h3>MB Admin Columns</h3>
|
235 |
+
<p><?php esc_html_e( 'Display custom fields in table columns in admin screens for All Posts (types).', 'meta-box' ); ?></p>
|
236 |
</div>
|
237 |
+
</div>
|
238 |
+
<div class="extension-action">
|
239 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/mb-admin-columns/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
240 |
+
</div>
|
241 |
+
</div>
|
242 |
+
<div class="extension">
|
243 |
+
<div class="extension-inner">
|
244 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M888 1184l116-116-152-152-116 116v56h96v96h56zm440-720q-16-16-33 1l-350 350q-17 17-1 33t33-1l350-350q17-17 1-33zm80 594v190q0 119-84.5 203.5t-203.5 84.5h-832q-119 0-203.5-84.5t-84.5-203.5v-832q0-119 84.5-203.5t203.5-84.5h832q63 0 117 25 15 7 18 23 3 17-9 29l-49 49q-14 14-32 8-23-6-45-6h-832q-66 0-113 47t-47 113v832q0 66 47 113t113 47h832q66 0 113-47t47-113v-126q0-13 9-22l64-64q15-15 35-7t20 29zm-96-738l288 288-672 672h-288v-288zm444 132l-92 92-288-288 92-92q28-28 68-28t68 28l152 152q28 28 28 68t-28 68z" /></svg>
|
245 |
+
<div class="extension-info">
|
246 |
+
<h3>Meta Box for Yoast SEO</h3>
|
247 |
+
<p><?php esc_html_e( 'Add content of custom fields to Yoast SEO Content Analysis to have better/correct SEO score.', 'meta-box' ); ?></p>
|
248 |
</div>
|
249 |
</div>
|
250 |
+
<div class="extension-action">
|
251 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-yoast-seo/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
252 |
+
</div>
|
253 |
+
</div>
|
254 |
+
<div class="extension">
|
255 |
+
<div class="extension-inner">
|
256 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832h-416v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z" /></svg>
|
257 |
+
<div class="extension-info">
|
258 |
+
<h3>Meta Box Text Limiter</h3>
|
259 |
+
<p><?php esc_html_e( 'Limit the number of characters or words entered for text and textarea fields.', 'meta-box' ); ?></p>
|
260 |
</div>
|
261 |
+
</div>
|
262 |
+
<div class="extension-action">
|
263 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-text-limiter/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
264 |
+
</div>
|
265 |
+
</div>
|
266 |
+
<div class="extension">
|
267 |
+
<div class="extension-inner">
|
268 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1639 1056q0 5-1 7-64 268-268 434.5t-478 166.5q-146 0-282.5-55t-243.5-157l-129 129q-19 19-45 19t-45-19-19-45v-448q0-26 19-45t45-19h448q26 0 45 19t19 45-19 45l-137 137q71 66 161 102t187 36q134 0 250-65t186-179q11-17 53-117 8-23 30-23h192q13 0 22.5 9.5t9.5 22.5zm25-800v448q0 26-19 45t-45 19h-448q-26 0-45-19t-19-45 19-45l138-138q-148-137-349-137-134 0-250 65t-186 179q-11 17-53 117-8 23-30 23h-199q-13 0-22.5-9.5t-9.5-22.5v-7q65-268 270-434.5t480-166.5q146 0 284 55.5t245 156.5l130-129q19-19 45-19t45 19 19 45z" /></svg>
|
269 |
+
<div class="extension-info">
|
270 |
+
<h3>Meta Box Updater</h3>
|
271 |
+
<p><?php esc_html_e( 'Automatically updates all Meta Box extensions within the WordPress Admin area.', 'meta-box' ); ?></p>
|
272 |
</div>
|
273 |
</div>
|
274 |
+
<div class="extension-action">
|
275 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-updater/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
276 |
+
</div>
|
277 |
+
</div>
|
278 |
+
<div class="extension">
|
279 |
+
<div class="extension-inner">
|
280 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1596 476q14 14 28 36h-472v-472q22 14 36 28zm-476 164h544v1056q0 40-28 68t-68 28h-1344q-40 0-68-28t-28-68v-1600q0-40 28-68t68-28h800v544q0 40 28 68t68 28zm160 736v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zm0-256v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23zm0-256v-64q0-14-9-23t-23-9h-704q-14 0-23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23-9t9-23z" /></svg>
|
281 |
+
<div class="extension-info">
|
282 |
+
<h3>Meta Box Template</h3>
|
283 |
+
<p><?php esc_html_e( 'Define custom meta boxes and custom fields easier with templates.', 'meta-box' ); ?></p>
|
284 |
</div>
|
285 |
+
</div>
|
286 |
+
<div class="extension-action">
|
287 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-template/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
288 |
+
</div>
|
289 |
+
</div>
|
290 |
+
<div class="extension">
|
291 |
+
<div class="extension-inner">
|
292 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1152 1376v-160q0-14-9-23t-23-9h-96v-512q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23zm-128-896v-160q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23zm640 416q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z" /></svg>
|
293 |
+
<div class="extension-info">
|
294 |
+
<h3>Meta Box Tooltip</h3>
|
295 |
+
<p><?php esc_html_e( 'Display help information for fields using beautiful tooltips.', 'meta-box' ); ?></p>
|
296 |
</div>
|
297 |
</div>
|
298 |
+
<div class="extension-action">
|
299 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-tooltip/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
300 |
+
</div>
|
301 |
+
</div>
|
302 |
+
<div class="extension">
|
303 |
+
<div class="extension-inner">
|
304 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1664 960q-152-236-381-353 61 104 61 225 0 185-131.5 316.5t-316.5 131.5-316.5-131.5-131.5-316.5q0-121 61-225-229 117-381 353 133 205 333.5 326.5t434.5 121.5 434.5-121.5 333.5-326.5zm-720-384q0-20-14-34t-34-14q-125 0-214.5 89.5t-89.5 214.5q0 20 14 34t34 14 34-14 14-34q0-86 61-147t147-61q20 0 34-14t14-34zm848 384q0 34-20 69-140 230-376.5 368.5t-499.5 138.5-499.5-139-376.5-368q-20-35-20-69t20-69q140-229 376.5-368t499.5-139 499.5 139 376.5 368q20 35 20 69z" /></svg>
|
305 |
+
<div class="extension-info">
|
306 |
+
<h3>Meta Box Show Hide</h3>
|
307 |
+
<p><?php esc_html_e( 'Toggle meta boxes by page template, post format or taxonomy using JS.', 'meta-box' ); ?></p>
|
308 |
</div>
|
309 |
+
</div>
|
310 |
+
<div class="extension-action">
|
311 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-show-hide/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
312 |
+
</div>
|
313 |
+
</div>
|
314 |
+
<div class="extension">
|
315 |
+
<div class="extension-inner">
|
316 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M224 1536h608v-1152h-640v1120q0 13 9.5 22.5t22.5 9.5zm1376-32v-1120h-640v1152h608q13 0 22.5-9.5t9.5-22.5zm128-1216v1216q0 66-47 113t-113 47h-1344q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1344q66 0 113 47t47 113z" /></svg>
|
317 |
+
<div class="extension-info">
|
318 |
+
<h3>Meta Box Columns</h3>
|
319 |
+
<p><?php esc_html_e( 'Display fields more beautiful by putting them into 12-columns grid.', 'meta-box' ); ?></p>
|
320 |
</div>
|
321 |
</div>
|
322 |
+
<div class="extension-action">
|
323 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-columns/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
324 |
+
</div>
|
325 |
+
</div>
|
326 |
+
<div class="extension">
|
327 |
+
<div class="extension-inner">
|
328 |
+
<svg viewBox="0 0 2048 1792" xmlns="http://www.w3.org/2000/svg"><path d="M681 1399l-50 50q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l50 50q10 10 10 23t-10 23l-393 393 393 393q10 10 10 23t-10 23zm591-1067l-373 1291q-4 13-15.5 19.5t-23.5 2.5l-62-17q-13-4-19.5-15.5t-2.5-24.5l373-1291q4-13 15.5-19.5t23.5-2.5l62 17q13 4 19.5 15.5t2.5 24.5zm657 651l-466 466q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l393-393-393-393q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l466 466q10 10 10 23t-10 23z" /></svg>
|
329 |
+
<div class="extension-info">
|
330 |
+
<h3>Meta Box Include Exclude</h3>
|
331 |
+
<p><?php esc_html_e( 'Show or hide meta boxes whenever and for whomever you choose.', 'meta-box' ); ?></p>
|
332 |
</div>
|
333 |
+
</div>
|
334 |
+
<div class="extension-action">
|
335 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/meta-box-include-exclude/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a>
|
336 |
+
</div>
|
337 |
+
</div>
|
338 |
+
<div class="extension">
|
339 |
+
<div class="extension-inner">
|
340 |
+
<svg viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M384 1184v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zm0-256v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zm0-256v64q0 13-9.5 22.5t-22.5 9.5h-64q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h64q13 0 22.5 9.5t9.5 22.5zm1152 512v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zm0-256v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zm0-256v64q0 13-9.5 22.5t-22.5 9.5h-960q-13 0-22.5-9.5t-9.5-22.5v-64q0-13 9.5-22.5t22.5-9.5h960q13 0 22.5 9.5t9.5 22.5zm128 704v-832q0-13-9.5-22.5t-22.5-9.5h-1472q-13 0-22.5 9.5t-9.5 22.5v832q0 13 9.5 22.5t22.5 9.5h1472q13 0 22.5-9.5t9.5-22.5zm128-1088v1088q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1088q0-66 47-113t113-47h1472q66 0 113 47t47 113z" /></svg>
|
341 |
+
<div class="extension-info">
|
342 |
+
<h3>MB Custom Taxonomy</h3>
|
343 |
+
<p><?php esc_html_e( 'Create and manage custom taxonomies with an easy-to-use interface in WordPress.', 'meta-box' ); ?></p>
|
344 |
</div>
|
345 |
</div>
|
346 |
+
<div class="extension-action">
|
347 |
+
<a class="button" target="_blank" href="https://metabox.io/plugins/custom-taxonomy/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Free Download', 'meta-box' ); ?></a>
|
348 |
+
</div>
|
349 |
</div>
|
350 |
</div>
|
351 |
</div>
|
inc/about/sections/tabs.php
CHANGED
@@ -8,6 +8,7 @@
|
|
8 |
?>
|
9 |
<h2 class="nav-tab-wrapper">
|
10 |
<a href="#getting-started" class="nav-tab nav-tab-active"><?php esc_html_e( 'Getting Started', 'meta-box' ); ?></a>
|
|
|
11 |
<a href="#extensions" class="nav-tab"><?php esc_html_e( 'Extensions', 'meta-box' ); ?></a>
|
12 |
<a href="#support" class="nav-tab"><?php esc_html_e( 'Support', 'meta-box' ); ?></a>
|
13 |
</h2>
|
8 |
?>
|
9 |
<h2 class="nav-tab-wrapper">
|
10 |
<a href="#getting-started" class="nav-tab nav-tab-active"><?php esc_html_e( 'Getting Started', 'meta-box' ); ?></a>
|
11 |
+
<?php do_action( 'rwmb_about_tabs' ); ?>
|
12 |
<a href="#extensions" class="nav-tab"><?php esc_html_e( 'Extensions', 'meta-box' ); ?></a>
|
13 |
<a href="#support" class="nav-tab"><?php esc_html_e( 'Support', 'meta-box' ); ?></a>
|
14 |
</h2>
|
inc/about/sections/welcome.php
CHANGED
@@ -9,8 +9,8 @@
|
|
9 |
?>
|
10 |
<h1>
|
11 |
<?php
|
12 |
-
// Translators: %
|
13 |
-
echo esc_html( sprintf( __( 'Welcome to %
|
14 |
?>
|
15 |
</h1>
|
16 |
<div class="about-text"><?php esc_html_e( 'Meta Box is a free Gutenberg and GDPR-compatible WordPress custom fields plugin and framework that makes quick work of customizing a website with—you guessed it—meta boxes and custom fields in WordPress. Follow the instruction below to get started!', 'meta-box' ); ?></div>
|
9 |
?>
|
10 |
<h1>
|
11 |
<?php
|
12 |
+
// Translators: %s - Plugin name.
|
13 |
+
echo esc_html( sprintf( __( 'Welcome to %s', 'meta-box' ), $this->plugin['Name'] ) );
|
14 |
?>
|
15 |
</h1>
|
16 |
<div class="about-text"><?php esc_html_e( 'Meta Box is a free Gutenberg and GDPR-compatible WordPress custom fields plugin and framework that makes quick work of customizing a website with—you guessed it—meta boxes and custom fields in WordPress. Follow the instruction below to get started!', 'meta-box' ); ?></div>
|
inc/fields/image.php
CHANGED
@@ -122,7 +122,7 @@ class RWMB_Image_Field extends RWMB_File_Field {
|
|
122 |
'alt' => get_post_meta( $file, '_wp_attachment_image_alt', true ),
|
123 |
);
|
124 |
if ( function_exists( 'wp_get_attachment_image_srcset' ) ) {
|
125 |
-
$info['srcset'] = wp_get_attachment_image_srcset( $file );
|
126 |
}
|
127 |
|
128 |
$info = wp_parse_args( $info, wp_get_attachment_metadata( $file ) );
|
122 |
'alt' => get_post_meta( $file, '_wp_attachment_image_alt', true ),
|
123 |
);
|
124 |
if ( function_exists( 'wp_get_attachment_image_srcset' ) ) {
|
125 |
+
$info['srcset'] = wp_get_attachment_image_srcset( $file, $args['size'] );
|
126 |
}
|
127 |
|
128 |
$info = wp_parse_args( $info, wp_get_attachment_metadata( $file ) );
|
inc/fields/map.php
CHANGED
@@ -13,6 +13,8 @@ class RWMB_Map_Field extends RWMB_Field {
|
|
13 |
* Enqueue scripts and styles.
|
14 |
*/
|
15 |
public static function admin_enqueue_scripts() {
|
|
|
|
|
16 |
/**
|
17 |
* Since June 2016, Google Maps requires a valid API key.
|
18 |
*
|
@@ -36,7 +38,6 @@ class RWMB_Map_Field extends RWMB_Field {
|
|
36 |
*/
|
37 |
$google_maps_url = apply_filters( 'rwmb_google_maps_url', $google_maps_url );
|
38 |
wp_register_script( 'google-maps', esc_url_raw( $google_maps_url ), array(), '', true );
|
39 |
-
wp_enqueue_style( 'rwmb-map', RWMB_CSS_URL . 'map.css', array(), RWMB_VER );
|
40 |
wp_enqueue_script( 'rwmb-map', RWMB_JS_URL . 'map.js', array(
|
41 |
'jquery-ui-autocomplete',
|
42 |
'google-maps',
|
13 |
* Enqueue scripts and styles.
|
14 |
*/
|
15 |
public static function admin_enqueue_scripts() {
|
16 |
+
wp_enqueue_style( 'rwmb-map', RWMB_CSS_URL . 'map.css', array( 'common', 'forms' ), RWMB_VER );
|
17 |
+
|
18 |
/**
|
19 |
* Since June 2016, Google Maps requires a valid API key.
|
20 |
*
|
38 |
*/
|
39 |
$google_maps_url = apply_filters( 'rwmb_google_maps_url', $google_maps_url );
|
40 |
wp_register_script( 'google-maps', esc_url_raw( $google_maps_url ), array(), '', true );
|
|
|
41 |
wp_enqueue_script( 'rwmb-map', RWMB_JS_URL . 'map.js', array(
|
42 |
'jquery-ui-autocomplete',
|
43 |
'google-maps',
|
inc/fields/text-list.php
CHANGED
@@ -9,6 +9,13 @@
|
|
9 |
* Text list field class.
|
10 |
*/
|
11 |
class RWMB_Text_List_Field extends RWMB_Multiple_Values_Field {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
/**
|
13 |
* Get field HTML.
|
14 |
*
|
@@ -18,26 +25,42 @@ class RWMB_Text_List_Field extends RWMB_Multiple_Values_Field {
|
|
18 |
* @return string
|
19 |
*/
|
20 |
public static function html( $meta, $field ) {
|
|
|
|
|
|
|
21 |
$html = array();
|
22 |
-
$input = '<label><input type="text" class="rwmb-text-list" name="%s" value="%s" placeholder="%s"
|
23 |
|
24 |
$count = 0;
|
25 |
-
|
26 |
-
|
27 |
-
$
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
}
|
36 |
-
endif;
|
37 |
|
38 |
return implode( ' ', $html );
|
39 |
}
|
40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
/**
|
42 |
* Format value for the helper functions.
|
43 |
*
|
9 |
* Text list field class.
|
10 |
*/
|
11 |
class RWMB_Text_List_Field extends RWMB_Multiple_Values_Field {
|
12 |
+
/**
|
13 |
+
* Enqueue scripts and styles.
|
14 |
+
*/
|
15 |
+
public static function admin_enqueue_scripts() {
|
16 |
+
wp_enqueue_style( 'rwmb-text-list', RWMB_CSS_URL . 'text-list.css', '', RWMB_VER );
|
17 |
+
}
|
18 |
+
|
19 |
/**
|
20 |
* Get field HTML.
|
21 |
*
|
25 |
* @return string
|
26 |
*/
|
27 |
public static function html( $meta, $field ) {
|
28 |
+
if ( empty( $field['options'] ) ) {
|
29 |
+
return '';
|
30 |
+
}
|
31 |
$html = array();
|
32 |
+
$input = '<label><span class="rwmb-text-list-label">%s</span> <input type="text" class="rwmb-text-list" name="%s" value="%s" placeholder="%s"></label>';
|
33 |
|
34 |
$count = 0;
|
35 |
+
foreach ( $field['options'] as $placeholder => $label ) {
|
36 |
+
$html[] = sprintf(
|
37 |
+
$input,
|
38 |
+
$label,
|
39 |
+
$field['field_name'],
|
40 |
+
isset( $meta[ $count ] ) ? esc_attr( $meta[ $count ] ) : '',
|
41 |
+
$placeholder
|
42 |
+
);
|
43 |
+
$count ++;
|
44 |
+
}
|
|
|
|
|
45 |
|
46 |
return implode( ' ', $html );
|
47 |
}
|
48 |
|
49 |
+
/**
|
50 |
+
* Normalize parameters for field.
|
51 |
+
*
|
52 |
+
* @param array $field Field parameters.
|
53 |
+
*
|
54 |
+
* @return array
|
55 |
+
*/
|
56 |
+
public static function normalize( $field ) {
|
57 |
+
$field = parent::normalize( $field );
|
58 |
+
if ( ! $field['clone'] ) {
|
59 |
+
$field['class'] .= ' rwmb-text_list-non-cloneable';
|
60 |
+
}
|
61 |
+
return $field;
|
62 |
+
}
|
63 |
+
|
64 |
/**
|
65 |
* Format value for the helper functions.
|
66 |
*
|
inc/loader.php
CHANGED
@@ -18,7 +18,7 @@ class RWMB_Loader {
|
|
18 |
*/
|
19 |
protected function constants() {
|
20 |
// Script version, used to add version for scripts and styles.
|
21 |
-
define( 'RWMB_VER', '4.14.
|
22 |
|
23 |
list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
|
24 |
|
18 |
*/
|
19 |
protected function constants() {
|
20 |
// Script version, used to add version for scripts and styles.
|
21 |
+
define( 'RWMB_VER', '4.14.10' );
|
22 |
|
23 |
list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
|
24 |
|
js/select-advanced.js
CHANGED
@@ -27,6 +27,7 @@ jQuery( function ( $ ) {
|
|
27 |
function update() {
|
28 |
var $this = $( this ),
|
29 |
options = $this.data( 'options' );
|
|
|
30 |
$this.siblings( '.select2-container' ).remove();
|
31 |
$this.show().select2( options );
|
32 |
|
27 |
function update() {
|
28 |
var $this = $( this ),
|
29 |
options = $this.data( 'options' );
|
30 |
+
$this.removeClass( 'select2-hidden-accessible' );
|
31 |
$this.siblings( '.select2-container' ).remove();
|
32 |
$this.show().select2( options );
|
33 |
|
meta-box.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Meta Box
|
4 |
* Plugin URI: https://metabox.io
|
5 |
* Description: Create custom meta boxes and custom fields in WordPress.
|
6 |
-
* Version: 4.14.
|
7 |
* Author: MetaBox.io
|
8 |
* Author URI: https://metabox.io
|
9 |
* License: GPL2+
|
3 |
* Plugin Name: Meta Box
|
4 |
* Plugin URI: https://metabox.io
|
5 |
* Description: Create custom meta boxes and custom fields in WordPress.
|
6 |
+
* Version: 4.14.10
|
7 |
* Author: MetaBox.io
|
8 |
* Author URI: https://metabox.io
|
9 |
* License: GPL2+
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
=== Meta Box ===
|
2 |
Contributors: metabox, rilwis, fitwp, f-j-kaiser, funkatronic, PerWiklander, ruanmer, Omnicia
|
3 |
Donate link: https://metabox.io/pricing/
|
4 |
Tags: meta-box, custom fields, custom field, meta, meta-boxes, admin, advanced, custom, edit, field, file, image, magic fields, matrix, more fields, Post, repeater, simple fields, text, textarea, type, cms, fields post
|
5 |
Requires at least: 4.3
|
6 |
-
Tested up to: 4.9.
|
7 |
-
Stable tag: 4.14.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress.
|
1 |
+
=== Meta Box - WordPress Custom Fields Framework ===
|
2 |
Contributors: metabox, rilwis, fitwp, f-j-kaiser, funkatronic, PerWiklander, ruanmer, Omnicia
|
3 |
Donate link: https://metabox.io/pricing/
|
4 |
Tags: meta-box, custom fields, custom field, meta, meta-boxes, admin, advanced, custom, edit, field, file, image, magic fields, matrix, more fields, Post, repeater, simple fields, text, textarea, type, cms, fields post
|
5 |
Requires at least: 4.3
|
6 |
+
Tested up to: 4.9.6
|
7 |
+
Stable tag: 4.14.10
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress.
|