Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Ian Dunn

    (@iandunn)

    Yes, you can use the [bgmp-list] shortcode. See the Installation page for details.

    Thread Starter studioelle

    (@studioelle)

    Oops…thanks!

    when i use the [bgmp-list] shortcode, it shows the title and the body of the post too.
    Is there a way to just show the title of the post in the list and have it link to the full post?

    Plugin Author Ian Dunn

    (@iandunn)

    There isn’t an option for it, but if you’re comfortable with PHP you can use the bgmp_list-marker-output filter to change the output to anything you want. You’d do something like:

    function setBGMPMarkerOutput( $markerHTML, $markerID )
    {
        return 'foo';
    }
    add_filter( 'bgmp_list-marker-output', 'setBGMPMarkerOutput', 10, 2 );

    Where ‘foo’ is whatever output you want. You can use the $markerID variable to lookup the marker’s title, permalink, etc.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Basic Google Maps Placemarks] Is there a way to list entries below map?’ is closed to new replies.