Title: Geotargeting?
Last modified: January 31, 2020

---

# Geotargeting?

 *  Resolved [Cita Perfecta](https://wordpress.org/support/users/citaperfecta/)
 * (@citaperfecta)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/geotargeting-9/)
 * Hi,
    One of the problems I have with AMP in my site is not being able to display
   different content depending on the visitors country. Does your plugin support
   the amp-geo function? If so, how can I use it?
 * thanks so much!

Viewing 1 replies (of 1 total)

 *  [James Osborne](https://wordpress.org/support/users/jamesosborne/)
 * (@jamesosborne)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/geotargeting-9/#post-12384755)
 * [@citaperfecta](https://wordpress.org/support/users/citaperfecta/) You can use
   the `amp-geo` component as described on the components [documentation](https://amp.dev/documentation/components/amp-geo/).
 * To add the component script to your site you can add the following to your active
   themes functions.php, or preferably a custom plugin so it doesn’t get overwritten:
 *     ```
       add_filter('amp_post_template_data', function( $data ) {
           $data['amp_component_scripts'] = array_merge(
           $data['amp_component_scripts'],
            array(
             'amp-geo' => true,
            )
           );
         return $data;
         }
       );
       ```
   
 * After including the script you can add any of the example code using that resource
   as a reference.

Viewing 1 replies (of 1 total)

The topic ‘Geotargeting?’ is closed to new replies.

 * ![](https://ps.w.org/amp/assets/icon.svg?rev=2527602)
 * [AMP](https://wordpress.org/plugins/amp/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/amp/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/amp/)
 * [Active Topics](https://wordpress.org/support/plugin/amp/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/amp/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/amp/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [James Osborne](https://wordpress.org/support/users/jamesosborne/)
 * Last activity: [6 years, 3 months ago](https://wordpress.org/support/topic/geotargeting-9/#post-12384755)
 * Status: resolved