@@ -24,7 +24,11 @@ public static function linkPostType($permalink, $post, $leavename, $sample) {
24
24
}
25
25
26
26
protected static function linkRewriteFields ($ permalink , $ post ) {
27
- return preg_replace ('#(%field_(.*?)%)#e ' , 'CustomFieldsPermalink::linkRewriteFieldsExtract($post, " \\2") ' , $ permalink );
27
+ $ replaceCallback = function ($ matches ) use (&$ post ) {
28
+ return CustomFieldsPermalink::linkRewriteFieldsExtract ($ post , $ matches [2 ]);
29
+ };
30
+
31
+ return preg_replace_callback ('#(%field_(.*?)%)# ' , $ replaceCallback , $ permalink );
28
32
}
29
33
30
34
public static function linkRewriteFieldsExtract ($ post , $ fieldName ) {
@@ -48,16 +52,23 @@ public static function registerExtraQueryVars($value) {
48
52
public static function processRequest ($ value ) {
49
53
// additional parameters added to Wordpress
50
54
// Main Loop query
51
- $ value ['meta_key ' ] = $ value [self ::PARAM_CUSTOMFIELD_KEY ];
52
-
53
- // do not check field's value for this moment
54
- if (true === self ::$ checkCustomFieldValue ) {
55
- $ value ['meta_value ' ] = $ value [self ::PARAM_CUSTOMFIELD_VALUE ];
55
+ if (array_key_exists (self ::PARAM_CUSTOMFIELD_KEY , $ value )) {
56
+ $ value ['meta_key ' ] = $ value [self ::PARAM_CUSTOMFIELD_KEY ];
57
+
58
+ // remove temporary injected parameter
59
+ unset($ value [self ::PARAM_CUSTOMFIELD_KEY ]);
60
+
61
+ // do not check field's value for this moment
62
+ if (true === self ::$ checkCustomFieldValue ) {
63
+ if (array_key_exists (self ::PARAM_CUSTOMFIELD_VALUE , $ value )) {
64
+ $ value ['meta_value ' ] = $ value [self ::PARAM_CUSTOMFIELD_VALUE ];
65
+
66
+ // remove temporary injected parameter
67
+ unset($ value [self ::PARAM_CUSTOMFIELD_VALUE ]);
68
+ }
69
+ }
56
70
}
57
71
58
- // remove temporary injected parameters
59
- unset($ value [self ::PARAM_CUSTOMFIELD_KEY ], $ value [self ::PARAM_CUSTOMFIELD_VALUE ]);
60
-
61
72
return $ value ;
62
73
}
63
74
0 commit comments