-
·
Filter: mbp_placeholder_variables
The mbp_placeholder_variables filter can be used to alter or add variables to be replaced with their corresponding value in a GMB post. It has two arguments, $variables and $parent_post_id. Samples Add a variable This will replace %custom_variable% with Custom value in the text of your post function add_custom_variable($variables, $parent_post_id){ $variables[‘%custom_variable%’] = ‘Custom value’; return $variables;…