Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active December 4, 2019 11:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mgibbs189/d3bc1fde7a58e9e6e35ec9fe991965c7 to your computer and use it in GitHub Desktop.
Save mgibbs189/d3bc1fde7a58e9e6e35ec9fe991965c7 to your computer and use it in GitHub Desktop.
Automatically create shortcode using the post ID
<?php
add_filter( 'facetwp_builder_item_value', function( $value, $item ) {
if ( 'el-z9v5wp' == $item['settings']['name'] ) {
$shortcode = '[awts-total-sales product_id="' . $value . '" include_setting="true"]';
$value = do_shortcode( $shortcode );
}
return $value;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment