• 3xploiton3

    (@3xploiton3)


    Function amp_has_paired_endpoint was called incorrectly. Function called while AMP is disabled via amp_is_enabled filter. The service ID “paired_routing” is not recognized and cannot be retrieved. (This message was added in version 2.1.1.)

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter 3xploiton3

    (@3xploiton3)

    Plugin Support Milind More

    (@milindmore22)

    Hello @3xploiton3

    As the message suggested the amp_has_paired_endpoint is being called incorrectly meaning it has been used before the the amp plugin has not been fully loaded, if you have third-party plugin, theme or small code snippet that you is using amp_has_paired_endpoint hook please make sure to use it after the wp hook it will make sure that AMP plugin is fully loaded.

    eg:

    add_action( 'wp', function() {
    // use
    amp_has_paired_endpoint here.
    });
Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.