Tag: wordpress

  • Using spintax in Google My Business posts

    Using spintax in Google My Business posts

    Post to Google My Business (Pro & Business) support spintax to automatically generate unique GMB Posts. Spintax is a way to mark up text to generate one or more unique variations of the original. Basic spintax example Lets say your original post looks like this: At Acme Electronics, we offer all kinds of residential and…

  • Filter: mbp_autopost_post_args

    The mbp_autopost_post_args filter allows you to alter the post arguments sent to Google My Business when the plugin creates an automatic post. It has 2 parameters, $args containing the post data and $location containing the GMB location ID. function do_something_with_the_post_args($args, $location){ //Alter the post arguments return $args; } add_filter(‘mbp_autopost_post_args’, ‘do_something_with_the_post_args’, 10, 2); Out of the…

  • How to schedule Google My Business posts

    How to schedule Google My Business posts

    Google doesn’t offer a way to schedule Google My Business posts by default, but wouldn’t it be nice to be able to queue them? You can easily schedule Google My Business posts and have them automatically published at a predefined time using the Post to Google My Business WordPress plugin. Install and configure the Post…