Action: bricks/dynamic_data/tag_value_parsed
Runs after Bricks parses a dynamic data tag value. This action is for observing or reacting to the parsed value; it does not change the returned value.
Parameters
Section titled “Parameters”$value(mixed): The parsed dynamic data value.$tag(string): The parsed tag name.$original_tag(string): The original dynamic data tag before parsing.$args(array): Parsed tag arguments.$post(WP_Post|int|null): The post context used while parsing.$context(string): The render context, such as text, link, or image.$provider(string|null): The provider that resolved the tag, when available.
Example usage
Section titled “Example usage”add_action( 'bricks/dynamic_data/tag_value_parsed', function( $value, $tag, $original_tag, $args, $post, $context, $provider ) { // Log or inspect parsed dynamic data values.}, 10, 7 );Was this helpful?
A quick vote and short notes help us improve these docs faster.
Leave a note for us
Please do not include passwords, license keys, or personal data. We store submitted notes to improve the docs.
Thanks for sharing feedback. We're using it to improve these docs.