Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #528145

    Hi, I need to add the following code to my header so that google will index the contents of my app and show the app in its search results.

    <link rel=”alternate” href=”android-app://com.app.p9770EH&hl/”>

    Where can I add this within enfold to ensure its in the correct place?

    Keith

    #528322

    Hi roamingk,

    Please try adding the following to your child themes functions.php:

    function google_app_header(){ ?>
    <link rel=”alternate” href=”android-app://com.app.p9770EH&hl/”>
    <?php
    }
    add_action('wp_head', 'google_app_header');

    Thanks,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.