plugin_screen_hook_suffix = add_submenu_page('amazon_ai', 'Alexa Integration', 'Alexa Integration', 'manage_options', 'amazon_ai_alexa', array( $this, 'amazonai_gui' )); } public function amazonai_gui() { ?>

Alexa Integration

common = new AmazonAI_Common(); $this->common->init(); if ( $this->common->is_podcast_enabled() ) { echo '

You can extend WordPress websites and blogs through Alexa devices. This opens new possibilities for the creators and authors of websites to reach an even broader audience. It also makes it easier for people to listen to their favorite blogs by just asking Alexa to read them!

'; echo 'Alexa Interaction'; echo '

The following diagram presents the flow of interactions and components that are required to expose your website through Alexa.

'; echo 'Alexa Interaction'; echo '

The following short video presents what the solution works at the end, and how you can ‘listen’ to your blog posts on Alexa devices:

'; echo ''; $blog_link = 'https://aws.amazon.com/blogs/machine-learning/read-wordpress-sites-through-amazon-alexa-devices/'; echo '

For more details, and instructions how to connect your site with Alexa, visit following AWS AI Blog Post

'; } else { echo '

Amazon Pollycast needs to be enabled

'; } } }