Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Forked from djrmom/custom-hooks.php
Last active February 16, 2019 14:34
Show Gist options
  • Save mgibbs189/dd6e0a20fa84f11cd7219aa014a9b759 to your computer and use it in GitHub Desktop.
Save mgibbs189/dd6e0a20fa84f11cd7219aa014a9b759 to your computer and use it in GitHub Desktop.
facetwp shortcodes in layout builder
<?php
add_filter( 'facetwp_builder_item_value', function( $value, $item ) {
if ( 'el-2ydbgp' == $item['settings']['name'] ) {
$value = do_shortcode( $value );
}
return $value;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment