Version Description
Download this release
Release Info
Developer | rilwis |
Plugin | Meta Box |
Version | 4.14.7 |
Comparing to | |
See all releases |
Code changes from version 4.14.6 to 4.14.7
- inc/about/about.php +21 -8
- inc/about/css/style.css +95 -20
- inc/about/images/builder.png +0 -0
- inc/about/images/conditional-logic.png +0 -0
- inc/about/images/custom-post-type.png +0 -0
- inc/about/images/custom-table.png +0 -0
- inc/about/images/frontend-submission.png +0 -0
- inc/about/images/group.png +0 -0
- inc/about/images/relationships.png +0 -0
- inc/about/images/rest-api.png +0 -0
- inc/about/images/settings-page.png +0 -0
- inc/about/images/tabs.png +0 -0
- inc/about/images/term-meta.png +0 -0
- inc/about/images/user-meta.png +0 -0
- inc/about/sections/extensions.php +281 -115
- inc/about/sections/getting-started.php +8 -8
- inc/about/sections/newsletter.php +4 -5
- inc/about/sections/support.php +4 -4
- inc/about/sections/upgrade.php +26 -0
- inc/about/sections/welcome.php +6 -6
- inc/loader.php +1 -1
- meta-box.php +1 -1
- readme.txt +1 -1
inc/about/about.php
CHANGED
@@ -80,13 +80,24 @@ class RWMB_About {
|
|
80 |
*/
|
81 |
public function render() {
|
82 |
?>
|
83 |
-
<div class="wrap
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
</div>
|
91 |
<?php
|
92 |
}
|
@@ -114,7 +125,9 @@ class RWMB_About {
|
|
114 |
),
|
115 |
'strong' => array(),
|
116 |
);
|
117 |
-
|
|
|
|
|
118 |
}
|
119 |
|
120 |
/**
|
80 |
*/
|
81 |
public function render() {
|
82 |
?>
|
83 |
+
<div class="wrap">
|
84 |
+
<div id="poststuff">
|
85 |
+
<div id="post-body" class="metabox-holder columns-2">
|
86 |
+
<div id="post-body-content">
|
87 |
+
<div class="about-wrap">
|
88 |
+
<?php include dirname( __FILE__ ) . '/sections/welcome.php'; ?>
|
89 |
+
<?php include dirname( __FILE__ ) . '/sections/tabs.php'; ?>
|
90 |
+
<?php include dirname( __FILE__ ) . '/sections/getting-started.php'; ?>
|
91 |
+
<?php include dirname( __FILE__ ) . '/sections/extensions.php'; ?>
|
92 |
+
<?php include dirname( __FILE__ ) . '/sections/support.php'; ?>
|
93 |
+
</div>
|
94 |
+
</div>
|
95 |
+
<div id="postbox-container-1" class="postbox-container">
|
96 |
+
<?php include dirname( __FILE__ ) . '/sections/newsletter.php'; ?>
|
97 |
+
<?php include dirname( __FILE__ ) . '/sections/upgrade.php'; ?>
|
98 |
+
</div>
|
99 |
+
</div>
|
100 |
+
</div>
|
101 |
</div>
|
102 |
<?php
|
103 |
}
|
125 |
),
|
126 |
'strong' => array(),
|
127 |
);
|
128 |
+
|
129 |
+
// Translators: %1$s - link to review form.
|
130 |
+
echo wp_kses( sprintf( __( 'Please rate <strong>Meta Box</strong> <a href="%1$s" target="_blank">★★★★★</a> on <a href="%1$s" target="_blank">WordPress.org</a> to help us spread the word. Thank you from the Meta Box team!', 'meta-box' ), 'https://wordpress.org/support/view/plugin-reviews/meta-box?filter=5#new-post' ), $allowed_html );
|
131 |
}
|
132 |
|
133 |
/**
|
inc/about/css/style.css
CHANGED
@@ -19,15 +19,9 @@
|
|
19 |
font-size: 16px;
|
20 |
}
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
margin:
|
25 |
-
border: 3px dashed #999;
|
26 |
-
padding: 15px;
|
27 |
-
display: inline-block;
|
28 |
-
}
|
29 |
-
.newsletter p {
|
30 |
-
margin-top: 0;
|
31 |
}
|
32 |
|
33 |
.feature-section.two-col {
|
@@ -79,19 +73,35 @@
|
|
79 |
.theme-browser {
|
80 |
margin-top: 40px;
|
81 |
}
|
82 |
-
.theme-browser .theme {
|
83 |
-
|
84 |
}
|
85 |
-
.
|
86 |
-
top: 0;
|
87 |
-
left: 0;
|
88 |
-
right: 0;
|
89 |
-
bottom: 48px;
|
90 |
-
border-radius: 0;
|
91 |
-
line-height: 1.7;
|
92 |
display: flex;
|
93 |
-
|
94 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
}
|
96 |
@media (min-width: 1640px) {
|
97 |
.theme-browser .theme {
|
@@ -104,4 +114,69 @@
|
|
104 |
.theme-browser .theme:nth-child(3n) {
|
105 |
margin-right: 0;
|
106 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
}
|
19 |
font-size: 16px;
|
20 |
}
|
21 |
|
22 |
+
#poststuff .nav-tab-wrapper {
|
23 |
+
padding: 0;
|
24 |
+
margin-top: 60px;
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
}
|
26 |
|
27 |
.feature-section.two-col {
|
73 |
.theme-browser {
|
74 |
margin-top: 40px;
|
75 |
}
|
76 |
+
.theme-browser .theme:hover {
|
77 |
+
cursor: initial;
|
78 |
}
|
79 |
+
.extension-inner {
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
display: flex;
|
81 |
+
background: #fff;
|
82 |
+
padding: 25px 20px;
|
83 |
+
}
|
84 |
+
.extension-inner svg {
|
85 |
+
width: 48px;
|
86 |
+
height: 48px;
|
87 |
+
margin: 8px 20px 0 0;
|
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 |
+
}
|
97 |
+
.extension-info p {
|
98 |
+
margin: 0;
|
99 |
+
}
|
100 |
+
.extension-action {
|
101 |
+
border-top: 1px solid #ddd;
|
102 |
+
text-align: center;
|
103 |
+
padding: 20px;
|
104 |
+
background: #f7f7f7;
|
105 |
}
|
106 |
@media (min-width: 1640px) {
|
107 |
.theme-browser .theme {
|
114 |
.theme-browser .theme:nth-child(3n) {
|
115 |
margin-right: 0;
|
116 |
}
|
117 |
+
.theme-browser .theme:nth-child(3n+1) {
|
118 |
+
clear: left;
|
119 |
+
}
|
120 |
+
}
|
121 |
+
|
122 |
+
|
123 |
+
/* Right column */
|
124 |
+
#post-body.columns-2 #postbox-container-1 {
|
125 |
+
position: fixed;
|
126 |
+
right: 320px;
|
127 |
+
top: 40px;
|
128 |
+
}
|
129 |
+
|
130 |
+
/* Newsletter */
|
131 |
+
.newsletter {
|
132 |
+
margin: 40px 0;
|
133 |
+
border: 3px dashed #82878c;
|
134 |
+
padding: 15px;
|
135 |
+
background: #fff;
|
136 |
+
}
|
137 |
+
.newsletter .dashicons {
|
138 |
+
color: #00b9eb;
|
139 |
+
width: 30px;
|
140 |
+
height: 30px;
|
141 |
+
font-size: 30px;
|
142 |
+
position: relative;
|
143 |
+
top: -5px;
|
144 |
+
left: -2px;
|
145 |
+
}
|
146 |
+
.newsletter h3 {
|
147 |
+
margin: 0 0 5px;
|
148 |
+
}
|
149 |
+
.newsletter p {
|
150 |
+
margin-top: 0;
|
151 |
+
}
|
152 |
+
|
153 |
+
/* Upgrade */
|
154 |
+
.upgrade {
|
155 |
+
border: 3px dashed #82878c;
|
156 |
+
background: #fff;
|
157 |
+
padding: 15px;
|
158 |
+
}
|
159 |
+
.upgrade .dashicons {
|
160 |
+
color: #ef4836;
|
161 |
+
width: 26px;
|
162 |
+
height: 26px;
|
163 |
+
font-size: 30px;
|
164 |
+
position: relative;
|
165 |
+
top: -4px;
|
166 |
+
left: -5px;
|
167 |
+
}
|
168 |
+
.upgrade h3 {
|
169 |
+
margin: 0;
|
170 |
+
}
|
171 |
+
.upgrade li {
|
172 |
+
padding-left: 20px;
|
173 |
+
position: relative;
|
174 |
+
}
|
175 |
+
.upgrade svg {
|
176 |
+
width: 1em;
|
177 |
+
height: 1em;
|
178 |
+
fill: #0073aa;
|
179 |
+
position: absolute;
|
180 |
+
top: 4px;
|
181 |
+
left: 0;
|
182 |
}
|
inc/about/images/builder.png
DELETED
Binary file
|
inc/about/images/conditional-logic.png
DELETED
Binary file
|
inc/about/images/custom-post-type.png
DELETED
Binary file
|
inc/about/images/custom-table.png
DELETED
Binary file
|
inc/about/images/frontend-submission.png
DELETED
Binary file
|
inc/about/images/group.png
DELETED
Binary file
|
inc/about/images/relationships.png
DELETED
Binary file
|
inc/about/images/rest-api.png
DELETED
Binary file
|
inc/about/images/settings-page.png
DELETED
Binary file
|
inc/about/images/tabs.png
DELETED
Binary file
|
inc/about/images/term-meta.png
DELETED
Binary file
|
inc/about/images/user-meta.png
DELETED
Binary file
|
inc/about/sections/extensions.php
CHANGED
@@ -9,155 +9,321 @@
|
|
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' ); ?><br>
|
12 |
-
<?php esc_html_e( 'Save over 70% with our extensions bundles.', 'meta-box' ); ?> <a href="https://metabox.io/pricing
|
13 |
<div class="theme-browser rendered">
|
14 |
<div class="themes wp-clearfix">
|
15 |
-
<
|
16 |
-
<div class="
|
17 |
-
<
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
<h3 class="theme-name">Meta Box Builder</h3>
|
22 |
-
<div class="theme-actions">
|
23 |
-
<button class="button button-primary"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></button>
|
24 |
</div>
|
25 |
</div>
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
<
|
32 |
-
|
33 |
-
<
|
34 |
-
|
35 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
</div>
|
37 |
</div>
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
<
|
44 |
-
|
45 |
-
<
|
46 |
-
|
47 |
-
<
|
48 |
</div>
|
49 |
</div>
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
<
|
56 |
-
|
57 |
-
<
|
58 |
-
|
59 |
-
<
|
60 |
</div>
|
61 |
</div>
|
62 |
-
|
63 |
-
|
64 |
-
<div class="theme-screenshot">
|
65 |
-
<img src="<?php echo esc_url( RWMB_URL ); ?>inc/about/images/conditional-logic.png" alt="">
|
66 |
</div>
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
<
|
71 |
-
|
|
|
|
|
72 |
</div>
|
73 |
</div>
|
74 |
-
|
75 |
-
|
76 |
-
<div class="theme-screenshot">
|
77 |
-
<img src="<?php echo esc_url( RWMB_URL ); ?>inc/about/images/term-meta.png" alt="">
|
78 |
</div>
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
<
|
83 |
-
|
|
|
|
|
84 |
</div>
|
85 |
</div>
|
86 |
-
|
87 |
-
|
88 |
-
<div class="theme-screenshot">
|
89 |
-
<img src="<?php echo esc_url( RWMB_URL ); ?>inc/about/images/user-meta.png" alt="">
|
90 |
</div>
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
<
|
95 |
-
|
|
|
|
|
96 |
</div>
|
97 |
</div>
|
98 |
-
|
99 |
-
|
100 |
-
<div class="theme-screenshot">
|
101 |
-
<img src="<?php echo esc_url( RWMB_URL ); ?>inc/about/images/frontend-submission.png" alt="">
|
102 |
</div>
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
<
|
107 |
-
|
|
|
|
|
108 |
</div>
|
109 |
</div>
|
110 |
-
|
111 |
-
|
112 |
-
<div class="theme-screenshot">
|
113 |
-
<img src="<?php echo esc_url( RWMB_URL ); ?>inc/about/images/tabs.png" alt="meta box tabs">
|
114 |
</div>
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
<
|
119 |
-
|
|
|
|
|
120 |
</div>
|
121 |
</div>
|
122 |
-
|
123 |
-
|
124 |
-
<div class="theme-screenshot">
|
125 |
-
<img src="<?php echo esc_url( RWMB_URL ); ?>inc/about/images/custom-table.png" alt="mb custom table">
|
126 |
</div>
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
<
|
131 |
-
|
|
|
|
|
132 |
</div>
|
133 |
</div>
|
134 |
-
|
135 |
-
|
136 |
-
<div class="theme-screenshot">
|
137 |
-
<img src="<?php echo esc_url( RWMB_URL ); ?>inc/about/images/rest-api.png" alt="mb rest api">
|
138 |
</div>
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
<
|
143 |
-
|
|
|
|
|
144 |
</div>
|
145 |
</div>
|
146 |
-
|
147 |
-
|
148 |
-
<div class="theme-screenshot">
|
149 |
-
<img src="<?php echo esc_url( RWMB_URL ); ?>inc/about/images/relationships.png" alt="mb relationships">
|
150 |
</div>
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
<
|
155 |
-
|
|
|
|
|
156 |
</div>
|
157 |
</div>
|
158 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
</div>
|
160 |
</div>
|
161 |
-
|
162 |
-
<p><a href="https://metabox.io/plugins/" class="button button-primary"><?php esc_html_e( 'More Extensions', 'meta-box' ); ?> →</a></p>
|
163 |
</div>
|
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' ); ?><br>
|
12 |
+
<?php esc_html_e( '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></p>
|
13 |
<div class="theme-browser rendered">
|
14 |
<div class="themes wp-clearfix">
|
15 |
+
<div class="theme">
|
16 |
+
<div class="extension-inner">
|
17 |
+
<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>
|
18 |
+
<div class="extension-info">
|
19 |
+
<h3>Meta Box Builder</h3>
|
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="theme">
|
28 |
+
<div class="extension-inner">
|
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 |
+
<div class="theme">
|
40 |
+
<div class="extension-inner">
|
41 |
+
<svg width="1792" height="1792" 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>
|
42 |
+
<div class="extension-info">
|
43 |
+
<h3>Meta Box Group</h3>
|
44 |
+
<p><?php esc_html_e( 'Create repeatable groups of custom fields for better appearance and structure.', 'meta-box' ); ?></p>
|
45 |
+
</div>
|
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="theme">
|
52 |
+
<div class="extension-inner">
|
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 |
+
<div class="theme">
|
64 |
+
<div class="extension-inner">
|
65 |
+
<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>
|
66 |
+
<div class="extension-info">
|
67 |
+
<h3>Meta Box Conditional Logic</h3>
|
68 |
+
<p><?php esc_html_e( 'Control the visibility of meta boxes and fields or even HTML elements with ease.', 'meta-box' ); ?></p>
|
69 |
+
</div>
|
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="theme">
|
76 |
+
<div class="extension-inner">
|
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 |
+
<div class="theme">
|
88 |
+
<div class="extension-inner">
|
89 |
+
<svg width="1792" height="1792" 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>
|
90 |
+
<div class="extension-info">
|
91 |
+
<h3>MB User Meta</h3>
|
92 |
+
<p><?php esc_html_e( 'Add custom fields to user profile (user meta) quickly with simple syntax.', 'meta-box' ); ?></p>
|
93 |
+
</div>
|
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="theme">
|
100 |
+
<div class="extension-inner">
|
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 |
+
<div class="theme">
|
112 |
+
<div class="extension-inner">
|
113 |
+
<svg width="1792" height="1792" 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>
|
114 |
+
<div class="extension-info">
|
115 |
+
<h3>Meta Box Tabs</h3>
|
116 |
+
<p><?php esc_html_e( 'Add as many custom fields as you want and organize them into tabs.', 'meta-box' ); ?></p>
|
117 |
</div>
|
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="theme">
|
124 |
+
<div class="extension-inner">
|
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 |
+
<div class="theme">
|
136 |
+
<div class="extension-inner">
|
137 |
+
<svg width="1792" height="1792" 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>
|
138 |
+
<div class="extension-info">
|
139 |
+
<h3>MB Rest API</h3>
|
140 |
+
<p><?php esc_html_e( 'Pull all meta value from posts, terms into the WP REST API responses.', 'meta-box' ); ?></p>
|
141 |
</div>
|
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="theme">
|
148 |
+
<div class="extension-inner">
|
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 |
+
<div class="theme">
|
160 |
+
<div class="extension-inner">
|
161 |
+
<svg width="2048" height="1792" 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>
|
162 |
+
<div class="extension-info">
|
163 |
+
<h3>Meta Box – FacetWP Integrator</h3>
|
164 |
+
<p><?php esc_html_e( 'Integrates Meta Box and FacetWP, makes custom fields searchable and filterable in the frontend.', 'meta-box' ); ?></p>
|
165 |
</div>
|
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="theme">
|
172 |
+
<div class="extension-inner">
|
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 |
+
<div class="theme">
|
184 |
+
<div class="extension-inner">
|
185 |
+
<svg width="1792" height="1792" 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>
|
186 |
+
<div class="extension-info">
|
187 |
+
<h3>MB Revision</h3>
|
188 |
+
<p><?php esc_html_e( 'Track changes of custom fields with WordPress revision. Save, compare, restore the changes easily.', 'meta-box' ); ?></p>
|
189 |
</div>
|
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="theme">
|
196 |
+
<div class="extension-inner">
|
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 |
+
<div class="theme">
|
208 |
+
<div class="extension-inner">
|
209 |
+
<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>
|
210 |
+
<div class="extension-info">
|
211 |
+
<h3>MB Admin Columns</h3>
|
212 |
+
<p><?php esc_html_e( 'Display custom fields in table columns in admin screens for All Posts (types).', 'meta-box' ); ?></p>
|
213 |
</div>
|
214 |
</div>
|
215 |
+
<div class="extension-action">
|
216 |
+
<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>
|
|
|
|
|
217 |
</div>
|
218 |
+
</div>
|
219 |
+
<div class="theme">
|
220 |
+
<div class="extension-inner">
|
221 |
+
<svg width="1792" height="1792" 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>
|
222 |
+
<div class="extension-info">
|
223 |
+
<h3>Meta Box for Yoast SEO</h3>
|
224 |
+
<p><?php esc_html_e( 'Add content of custom fields to Yoast SEO Content Analysis to have better/correct SEO score.', 'meta-box' ); ?></p>
|
225 |
</div>
|
226 |
</div>
|
227 |
+
<div class="extension-action">
|
228 |
+
<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>
|
|
|
|
|
229 |
</div>
|
230 |
+
</div>
|
231 |
+
<div class="theme">
|
232 |
+
<div class="extension-inner">
|
233 |
+
<svg width="1792" height="1792" 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>
|
234 |
+
<div class="extension-info">
|
235 |
+
<h3>Meta Box Text Limiter</h3>
|
236 |
+
<p><?php esc_html_e( 'Limit the number of characters or words entered for text and textarea fields.', 'meta-box' ); ?></p>
|
237 |
</div>
|
238 |
</div>
|
239 |
+
<div class="extension-action">
|
240 |
+
<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>
|
241 |
+
</div>
|
242 |
+
</div>
|
243 |
+
<div class="theme">
|
244 |
+
<div class="extension-inner">
|
245 |
+
<svg width="1792" height="1792" 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>
|
246 |
+
<div class="extension-info">
|
247 |
+
<h3>Meta Box Updater</h3>
|
248 |
+
<p><?php esc_html_e( 'Automatically updates all Meta Box extensions within the WordPress Admin area.', 'meta-box' ); ?></p>
|
249 |
+
</div>
|
250 |
+
</div>
|
251 |
+
<div class="extension-action">
|
252 |
+
<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>
|
253 |
+
</div>
|
254 |
+
</div>
|
255 |
+
<div class="theme">
|
256 |
+
<div class="extension-inner">
|
257 |
+
<svg width="1792" height="1792" 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>
|
258 |
+
<div class="extension-info">
|
259 |
+
<h3>Meta Box Template</h3>
|
260 |
+
<p><?php esc_html_e( 'Define custom meta boxes and custom fields easier with templates.', 'meta-box' ); ?></p>
|
261 |
+
</div>
|
262 |
+
</div>
|
263 |
+
<div class="extension-action">
|
264 |
+
<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>
|
265 |
+
</div>
|
266 |
+
</div>
|
267 |
+
<div class="theme">
|
268 |
+
<div class="extension-inner">
|
269 |
+
<svg width="1792" height="1792" 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>
|
270 |
+
<div class="extension-info">
|
271 |
+
<h3>Meta Box Tooltip</h3>
|
272 |
+
<p><?php esc_html_e( 'Display help information for fields using beautiful tooltips.', 'meta-box' ); ?></p>
|
273 |
+
</div>
|
274 |
+
</div>
|
275 |
+
<div class="extension-action">
|
276 |
+
<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>
|
277 |
+
</div>
|
278 |
+
</div>
|
279 |
+
<div class="theme">
|
280 |
+
<div class="extension-inner">
|
281 |
+
<svg width="1792" height="1792" 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>
|
282 |
+
<div class="extension-info">
|
283 |
+
<h3>Meta Box Show Hide</h3>
|
284 |
+
<p><?php esc_html_e( 'Toggle meta boxes by page template, post format or taxonomy using JS.', 'meta-box' ); ?></p>
|
285 |
+
</div>
|
286 |
+
</div>
|
287 |
+
<div class="extension-action">
|
288 |
+
<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>
|
289 |
+
</div>
|
290 |
+
</div>
|
291 |
+
<div class="theme">
|
292 |
+
<div class="extension-inner">
|
293 |
+
<svg width="1792" height="1792" 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>
|
294 |
+
<div class="extension-info">
|
295 |
+
<h3>Meta Box Columns</h3>
|
296 |
+
<p><?php esc_html_e( 'Display fields more beautiful by putting them into 12-columns grid.', 'meta-box' ); ?></p>
|
297 |
+
</div>
|
298 |
+
</div>
|
299 |
+
<div class="extension-action">
|
300 |
+
<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>
|
301 |
+
</div>
|
302 |
+
</div>
|
303 |
+
<div class="theme">
|
304 |
+
<div class="extension-inner">
|
305 |
+
<svg width="2048" height="1792" 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>
|
306 |
+
<div class="extension-info">
|
307 |
+
<h3>Meta Box Include Exclude</h3>
|
308 |
+
<p><?php esc_html_e( 'Show or hide meta boxes whenever and for whomever you choose.', 'meta-box' ); ?></p>
|
309 |
+
</div>
|
310 |
+
</div>
|
311 |
+
<div class="extension-action">
|
312 |
+
<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>
|
313 |
+
</div>
|
314 |
+
</div>
|
315 |
+
<div class="theme">
|
316 |
+
<div class="extension-inner">
|
317 |
+
<svg width="1792" height="1792" 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>
|
318 |
+
<div class="extension-info">
|
319 |
+
<h3>MB Custom Taxonomy</h3>
|
320 |
+
<p><?php esc_html_e( 'Create and manage custom taxonomies with an easy-to-use interface in WordPress.', 'meta-box' ); ?></p>
|
321 |
+
</div>
|
322 |
+
</div>
|
323 |
+
<div class="extension-action">
|
324 |
+
<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>
|
325 |
+
</div>
|
326 |
+
</div>
|
327 |
</div>
|
328 |
</div>
|
|
|
|
|
329 |
</div>
|
inc/about/sections/getting-started.php
CHANGED
@@ -12,25 +12,25 @@
|
|
12 |
<h3><?php esc_html_e( 'Getting Started With Online Generator', 'meta-box' ); ?></h3>
|
13 |
<p><?php esc_html_e( 'The fastest way to getting started with Meta Box is use our online generator to generate meta boxes with custom fields. It provides a friendly UI for you to create meta boxes and custom fields just by drag and drop fields.', 'meta-box' ); ?><p>
|
14 |
|
15 |
-
<a class="screenshot" href="https://metabox.io/online-generator/?utm_source=
|
16 |
|
17 |
-
<p><a href="<?php echo esc_url( 'https://metabox.io/online-generator/?utm_source=
|
18 |
</div>
|
19 |
|
20 |
<div class="col">
|
21 |
<h3><?php esc_html_e( 'Understand The Basics', 'meta-box' ); ?></h3>
|
22 |
<p><?php esc_html_e( 'Meta Box doesn\'t have any admin page for configuration or settings. Instead of that, it provides a very powerful API to speed up the process of creating meta boxes and custom fields. It might take you a little time at first, but then you\'ll love the way it work because it helps you do and customize almost everything.', 'meta-box' ); ?><p>
|
23 |
-
<p><a href="<?php echo esc_url( 'https://docs.metabox.io/quick-start/?utm_source=
|
24 |
|
25 |
<h3><?php esc_html_e( 'Extensions', 'meta-box' ); ?></h3>
|
26 |
<p><?php esc_html_e( 'Wanna see more features that transform your WordPress website into a powerful CMS? Check out some extensions below:', 'meta-box' ); ?><p>
|
27 |
<ul>
|
28 |
-
<li><a target="_blank" href="https://metabox.io/plugins/meta-box-group/?utm_source=
|
29 |
-
<li><a target="_blank" href="https://metabox.io/plugins/meta-box-conditional-logic/?utm_source=
|
30 |
-
<li><a target="_blank" href="https://metabox.io/plugins/mb-settings-page/?utm_source=
|
31 |
-
<li><a target="_blank" href="https://metabox.io/plugins/mb-term-meta/?utm_source=
|
32 |
</ul>
|
33 |
-
<p><a
|
34 |
</div>
|
35 |
</div>
|
36 |
</div>
|
12 |
<h3><?php esc_html_e( 'Getting Started With Online Generator', 'meta-box' ); ?></h3>
|
13 |
<p><?php esc_html_e( 'The fastest way to getting started with Meta Box is use our online generator to generate meta boxes with custom fields. It provides a friendly UI for you to create meta boxes and custom fields just by drag and drop fields.', 'meta-box' ); ?><p>
|
14 |
|
15 |
+
<a target="_blank" class="screenshot" href="https://metabox.io/online-generator/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><img src="<?php echo esc_url( RWMB_URL . 'inc/about/images/online-generator.png' ); ?>" alt="<?php esc_attr_e( 'online generator', 'meta-box' ); ?>"></a>
|
16 |
|
17 |
+
<p><a class="button" target="_blank" href="<?php echo esc_url( 'https://metabox.io/online-generator/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin' ); ?>"><?php esc_html_e( 'Go to Online Generator', 'meta-box' ); ?></a></p>
|
18 |
</div>
|
19 |
|
20 |
<div class="col">
|
21 |
<h3><?php esc_html_e( 'Understand The Basics', 'meta-box' ); ?></h3>
|
22 |
<p><?php esc_html_e( 'Meta Box doesn\'t have any admin page for configuration or settings. Instead of that, it provides a very powerful API to speed up the process of creating meta boxes and custom fields. It might take you a little time at first, but then you\'ll love the way it work because it helps you do and customize almost everything.', 'meta-box' ); ?><p>
|
23 |
+
<p><a class="button" target="_blank" href="<?php echo esc_url( 'https://docs.metabox.io/quick-start/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin' ); ?>"><?php esc_html_e( 'Learn More', 'meta-box' ); ?></a></p>
|
24 |
|
25 |
<h3><?php esc_html_e( 'Extensions', 'meta-box' ); ?></h3>
|
26 |
<p><?php esc_html_e( 'Wanna see more features that transform your WordPress website into a powerful CMS? Check out some extensions below:', 'meta-box' ); ?><p>
|
27 |
<ul>
|
28 |
+
<li><a target="_blank" href="https://metabox.io/plugins/meta-box-group/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><span class="dashicons dashicons-welcome-widgets-menus"></span> <?php esc_html_e( 'Meta Box Group', 'meta-box' ); ?></a></li>
|
29 |
+
<li><a target="_blank" href="https://metabox.io/plugins/meta-box-conditional-logic/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><span class="dashicons dashicons-yes"></span> <?php esc_html_e( 'Meta Box Conditional Logic', 'meta-box' ); ?></a></li>
|
30 |
+
<li><a target="_blank" href="https://metabox.io/plugins/mb-settings-page/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><span class="dashicons dashicons-admin-generic"></span> <?php esc_html_e( 'MB Settings Page', 'meta-box' ); ?></a></li>
|
31 |
+
<li><a target="_blank" href="https://metabox.io/plugins/mb-term-meta/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><span class="dashicons dashicons-image-filter"></span> <?php esc_html_e( 'MB Term Meta', 'meta-box' ); ?></a></li>
|
32 |
</ul>
|
33 |
+
<p><a class="button" target="_blank" href="https://metabox.io/plugins/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'More Extensions', 'meta-box' ); ?></a>
|
34 |
</div>
|
35 |
</div>
|
36 |
</div>
|
inc/about/sections/newsletter.php
CHANGED
@@ -8,10 +8,9 @@
|
|
8 |
?>
|
9 |
|
10 |
<form method="post" action="https://app.zetamail.vn/form.php?form=77" target="_blank" class="newsletter">
|
|
|
11 |
<input name="format" value="h" type="hidden">
|
12 |
-
<p><?php esc_html_e( '
|
13 |
-
<
|
14 |
-
|
15 |
-
<button class="button button-primary"><?php esc_html_e( 'Subscribe', 'meta-box' ); ?></button>
|
16 |
-
</p>
|
17 |
</form>
|
8 |
?>
|
9 |
|
10 |
<form method="post" action="https://app.zetamail.vn/form.php?form=77" target="_blank" class="newsletter">
|
11 |
+
<h3><span class="dashicons dashicons-email-alt"></span> <?php esc_html_e( 'Meta Box Newsletter', 'meta-box' ); ?></h3>
|
12 |
<input name="format" value="h" type="hidden">
|
13 |
+
<p><?php esc_html_e( 'Want to learn how to use Meta Box to its full potential? Sign up to get valuable tips and resources. We will never spam you.', 'meta-box' ); ?></p>
|
14 |
+
<input name="email" value="" placeholder="joe@gmail.com" required type="email">
|
15 |
+
<button class="button button-primary"><?php esc_html_e( 'Subscribe', 'meta-box' ); ?></button>
|
|
|
|
|
16 |
</form>
|
inc/about/sections/support.php
CHANGED
@@ -7,19 +7,19 @@
|
|
7 |
|
8 |
?>
|
9 |
<div id="support" class="gt-tab-pane">
|
10 |
-
<p class="about-description">Still need help with Meta Box? We offer excellent support for you. But don't forget to check our <a href="https://docs.metabox.io">documentation</a> first.</p>
|
11 |
<div class="feature-section two-col">
|
12 |
<div class="col">
|
13 |
<h3><?php esc_html_e( 'Free Support', 'meta-box' ); ?></h3>
|
14 |
<p><?php esc_html_e( 'If you have any question about how to use the plugin, please open a new topic on WordPress.org support forum or open a new issue on Github (preferable). We will try to answer as soon as we can.', 'meta-box' ); ?><p>
|
15 |
-
<p><a href="https://github.com/wpmetabox/meta-box/issues"
|
16 |
-
<p><a href="https://wordpress.org/support/plugin/meta-box"
|
17 |
</div>
|
18 |
|
19 |
<div class="col">
|
20 |
<h3><?php esc_html_e( 'Premium Support', 'meta-box' ); ?></h3>
|
21 |
<p><?php esc_html_e( 'For users that have bought premium extensions, the support is provided in the Meta Box Support forum. Any question will be answered with technical details within 24 hours.', 'meta-box' ); ?><p>
|
22 |
-
<p><a href="https://metabox.io/support
|
23 |
</div>
|
24 |
</div>
|
25 |
</div>
|
7 |
|
8 |
?>
|
9 |
<div id="support" class="gt-tab-pane">
|
10 |
+
<p class="about-description">Still need help with Meta Box? We offer excellent support for you. But don't forget to check our <a href="https://docs.metabox.io?utm_source=WordPress&utm_medium=link&utm_campaign=plugin">documentation</a> first.</p>
|
11 |
<div class="feature-section two-col">
|
12 |
<div class="col">
|
13 |
<h3><?php esc_html_e( 'Free Support', 'meta-box' ); ?></h3>
|
14 |
<p><?php esc_html_e( 'If you have any question about how to use the plugin, please open a new topic on WordPress.org support forum or open a new issue on Github (preferable). We will try to answer as soon as we can.', 'meta-box' ); ?><p>
|
15 |
+
<p><a class="button" target="_blank" href="https://github.com/wpmetabox/meta-box/issues"><?php esc_html_e( 'Go to Github', 'meta-box' ); ?> →</a></p>
|
16 |
+
<p><a class="button" target="_blank" href="https://wordpress.org/support/plugin/meta-box"><?php esc_html_e( 'Go to WordPress.org', 'meta-box' ); ?> →</a></p>
|
17 |
</div>
|
18 |
|
19 |
<div class="col">
|
20 |
<h3><?php esc_html_e( 'Premium Support', 'meta-box' ); ?></h3>
|
21 |
<p><?php esc_html_e( 'For users that have bought premium extensions, the support is provided in the Meta Box Support forum. Any question will be answered with technical details within 24 hours.', 'meta-box' ); ?><p>
|
22 |
+
<p><a class="button" target="_blank" href="https://metabox.io/support/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Go to support forum', 'meta-box' ); ?> →</a></p>
|
23 |
</div>
|
24 |
</div>
|
25 |
</div>
|
inc/about/sections/upgrade.php
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Upgrade notice
|
4 |
+
*
|
5 |
+
* @package Meta Box
|
6 |
+
*/
|
7 |
+
|
8 |
+
?>
|
9 |
+
<div class="upgrade">
|
10 |
+
<h3><span class="dashicons dashicons-awards"></span> <?php esc_html_e( 'Upgrade to Meta Box PRO', 'meta-box' ); ?></h3>
|
11 |
+
<p><?php esc_html_e( 'Please upgrade to the PRO plan to unlock more awesome features.', 'meta-box' ); ?></p>
|
12 |
+
<ul>
|
13 |
+
<li><svg class="icon"><use xlink:href="#checkmark-outline"></use></svg><?php esc_html_e( 'Create custom fields with drag-n-drop interface - no coding knowledge required!', 'meta-box' ); ?></li>
|
14 |
+
<li><svg class="icon"><use xlink:href="#checkmark-outline"></use></svg><?php esc_html_e( 'Add custom fields to taxonomies or user profile.', 'meta-box' ); ?></li>
|
15 |
+
<li><svg class="icon"><use xlink:href="#checkmark-outline"></use></svg><?php esc_html_e( 'Create custom settings pages.', 'meta-box' ); ?></li>
|
16 |
+
<li><svg class="icon"><use xlink:href="#checkmark-outline"></use></svg><?php esc_html_e( 'Create frontend submission forms.', 'meta-box' ); ?></li>
|
17 |
+
<li><svg class="icon"><use xlink:href="#checkmark-outline"></use></svg><?php esc_html_e( 'Save custom fields in custom tables.', 'meta-box' ); ?></li>
|
18 |
+
<li><svg class="icon"><use xlink:href="#checkmark-outline"></use></svg><?php esc_html_e( 'And much more!', 'meta-box' ); ?></li>
|
19 |
+
</ul>
|
20 |
+
<a class="button button-primary" target="_blank" href="https://metabox.io/pricing/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Get Meta Box PRO now', 'meta-box' ); ?></a>
|
21 |
+
</div>
|
22 |
+
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
|
23 |
+
<symbol id="checkmark-outline" viewBox="0 0 20 20">
|
24 |
+
<path d="M2.93 17.07A10 10 0 1 1 17.07 2.93 10 10 0 0 1 2.93 17.07zm12.73-1.41A8 8 0 1 0 4.34 4.34a8 8 0 0 0 11.32 11.32zM6.7 9.29L9 11.6l4.3-4.3 1.4 1.42L9 14.4l-3.7-3.7 1.4-1.42z"/>
|
25 |
+
</symbol>
|
26 |
+
</svg>
|
inc/about/sections/welcome.php
CHANGED
@@ -14,11 +14,11 @@
|
|
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>
|
17 |
-
<a target="_blank" href="<?php echo esc_url( 'https://metabox.io/?utm_source=
|
18 |
<p class="about-buttons">
|
19 |
-
<a target="_blank" class="button
|
20 |
-
<a target="_blank" class="button
|
21 |
-
<a target="_blank" class="button
|
22 |
-
<a target="_blank" class="button
|
23 |
-
<a target="_blank" class="button
|
24 |
</p>
|
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>
|
17 |
+
<a target="_blank" class="wp-badge" href="<?php echo esc_url( 'https://metabox.io/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin' ); ?>"><?php echo esc_html( $this->plugin['Name'] ); ?></a>
|
18 |
<p class="about-buttons">
|
19 |
+
<a target="_blank" class="button" href="<?php echo esc_url( 'https://docs.metabox.io?utm_source=WordPress&utm_medium=link&utm_campaign=plugin' ); ?>"><?php esc_html_e( 'Documentation', 'meta-box' ); ?></a>
|
20 |
+
<a target="_blank" class="button" href="<?php echo esc_url( 'https://metabox.io/plugins/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin' ); ?>"><?php esc_html_e( 'Extensions', 'meta-box' ); ?></a>
|
21 |
+
<a target="_blank" class="button" href="<?php echo esc_url( 'https://metabox.io/support/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin' ); ?>"><?php esc_html_e( 'Support', 'meta-box' ); ?></a>
|
22 |
+
<a target="_blank" class="button" href="https://www.facebook.com/sharer/sharer.php?u=https%3A//metabox.io"><span class="dashicons dashicons-facebook-alt"></span> Share</a>
|
23 |
+
<a target="_blank" class="button" href="https://twitter.com/home?status=Reduce%20your%20dev%20time!%20Meta%20Box%20is%20the%20most%20powerful%20custom%20fields%20plugin%20for%20WordPress%20on%20the%20web%20https%3A//metabox.io%20via%20%40wpmetabox"><span class="dashicons dashicons-twitter"></span> Tweet</a>
|
24 |
</p>
|
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.7' );
|
22 |
|
23 |
list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
|
24 |
|
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.7
|
7 |
* Author: MetaBox.io
|
8 |
* Author URI: https://metabox.io
|
9 |
* License: GPL2+
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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.5
|
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.
|
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.5
|
7 |
+
Stable tag: 4.14.7
|
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.
|