We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f93c53b commit aa81c3cCopy full SHA for aa81c3c
php/class-delivery.php
@@ -1398,7 +1398,18 @@ public function rebuild_tag( $tag_element ) {
1398
* @return array|null
1399
*/
1400
public function parse_element( $element ) {
1401
-
+ /**
1402
+ * Filter to skip parsing an element.
1403
+ *
1404
+ * @hook cloudinary_skip_parse_element
1405
+ * @since 3.2.6
1406
+ * @default {false}
1407
1408
+ * @param $skip {bool} True to skip parsing.
1409
+ * @param $element {string} The element to parse.
1410
1411
+ * @return {bool}
1412
+ */
1413
if ( apply_filters( 'cloudinary_skip_parse_element', false, $element ) ) {
1414
return null;
1415
}
0 commit comments