In the last post we talked about how to get AMP working in WordPress and how to get it optimized for the Accelerated Mobile Pages search results. Today we’re going to talk about how to get Google Analytics working on the AMP content. We’re huge GA fans, and if we’re not tracking the traffic for our site, we really wonder why we’re doing it in the first place.
Google recommends that you create a new property for your AMP pages. The analytics library for AMP doesn’t have all the capabilities of a full-scale GA snippet, so there would be a bit of apples and oranges if you put that traffic into your main account. Also, there’s not going to be much traffic shuttling between the two versions of your site. There will be no traffic going from the real site to the AMP templates, and any traffic coming off the /amp pages will have only one source: Google mobile search.
Just like the logo we did in the previous blog post, you’re going to insert the Google Analytics onto your page using hooks dropped into functions.php. The AMP guidelines only allow pre-vetted one-size fits all javascript, which means you can’t just drop the normal GA snippet into your head. You will add Google Analytics using the “amp-analytics” tag, which you customize to your account using JSON.
Which is to say, copy and paste the code below and replace the “UA-xxxxxxx” with the Google Analytics ID for your new property, and that should do the trick.
I haven’t been seeing the GA AMP tag showing up in the Tag Assistant extension, so you will need to look at this property through the real-time viewer to see if it’s actually tracking.
https://tastyplacement.com/wp-content/uploads/accelerated-mobile-pages.jpg321881Matthew Beyhttps://tastyplacement.com/wp-content/uploads/tastyplacementneedssvg.svgMatthew Bey2016-02-22 17:23:522019-11-12 19:10:55How to Install Google Analytics on Your WordPress AMP Content
Do you have Accelerated Mobile Pages working? Unless you’re a major news outlet like The Guardian, you probably don’t. In this post, we’ll talk about what AMP is and what it’s not, how it will be hugely important for SEO (or totally irrelevent), and lastly how to get it working on your own WordPress site. And in the next post we’ll cover how to install the analytics, which will answer the question which is hovering sword of Damocles-like above this whole project: Is AMP worth the trouble? Or is it another crazy scheme like Rel Author which won’t catch on?
Accelerated Mobile Pages: Possibly a Big Deal
Starting on Wednesay, February 24th, two days from the writing of this blog post, Google will start presenting AMP in its mobile search results.
First, let’s remove the two major misconceptions that the name “Accelerated Mobile Pages” has already given you and everyone else. AMP is absolutely not a way to speed up your site’s load time. In fact, AMP is a tool for bypassing your site’s speed entirely. Second, AMP is not a way to deliver mobile content to your users and it’s not the newest successor to responsive design.
Accelerated Mobile Pages allow Google to present extremely fast content through mobile search. If you’re not on a mobile device, Google won’t show you AMP content. And to ensure the fastest possible loads, Google will cut you and your second-rate hosting out of the equation entirely by caching your AMP content on Google’s own servers.
So basically, you’re jumping through hoops to give Google content to present to their users, through their hosting, using their stringent quality standards, and without the design and features that you’ve worked so hard to implement on your site.
Take a look at this very post in AMP format, presuming you’re not doing so already. All you have to do is type “/amp” at the end of the URL and go: https://tastyplacement.com/how-to-implement-amp-and-google-analytics-in-wordpress/amp
Are you back? Doesn’t look like much is going on, does it? It’s supposed to be simple and cookie-cutter because everything here is about speed.
What Does AMP Mean for SEO?
If your site doesn’t pull any search traffic for the terms which provoke AMP search results, then this won’t amount to anything. If Google displays AMP results for your keywords, then it means choice rankings right at the top of the page. If there’s anything which is more of a no-brainer for SEO than automatic #1 rankings for a sizeable chunk of your organic traffic, please mention that in the comments.
At the moment, the AMP results demo only seems to show for very current news topics. You can expect that to expand as more publishers push into Accelerated Mobile Pages. Try opening this link in a mobile device to see it in action.
Getting AMP Working
The first step is to get the official AMP plugin for WordPress installed on your site. The team working on this piled on a bunch of updates under the wire before the big day. Just last month it gave some pretty raw results, with broken code displaying visibly on most pages.
Currently, the plugin only works on posts. It will not do regular-old pages or archive pages or anything like that. And it doesn’t have to. Remember, the mission for AMP is pretty narrow right now. It’s all about delivering content fast for mobile searchers and they won’t need any of that stuff.
The plugin is going to do all the heavy lifting of making the meta-tag markup work and having most of the content validate. You just need to make it look good and fix anything overly ugly.
Sprucing It Up
Out of the box, the AMP template for WordPress is pretty vanilla, but that’s kinda the point. You will want to customize it with your logo. The developers of the plugin want you to make your changes using hooks. This is the WordPress way and in the long term it will be the most future-proof strategy.
The AMP template will only display a 32×32 image. You may already have a favicon file of this size, but if not, shrink down your logo and then upload it to the WordPress media library.
To add that image, drop this function at the bottom of your theme’s functions.php file:
///////////////adding the site icon to AMP///////////
add_filter( 'amp_post_template_data', 'xyz_amp_set_site_icon_url' );
function xyz_amp_set_site_icon_url( $data ) {
// Ideally a 32x32 image!!!!!!!!!!!!!!!!!
$data[ 'site_icon_url' ] = get_site_url() . '/wp-content/uploads/YOURLOGONAMEHERE.jpg';
return $data;
}
If you want to make more sweeping changes, you will have to put together a custom template, but that’s probably not worth the effort until you know how much traffic you’re getting through the AMP initiative.
Troubleshooting AMP in WordPress
Most likely there’s going to be some problems. The AMP plugin broke our front page because we had our site name saved with a couple of capital letters. I found that the Digg Digg plugin broke AMP. Our caching plugin also caused strange results. Like usual, plugin conflicts will be the source of most of your problems.
To check to see if your page validates correctly, just add “#development=1” to the end of your AMP URL in Chrome. Then right-click, inspect element, and click on the “console” tab. If you haven’t made any mistakes, then you’ll get the all-clear validation:
If you don’t, then you have more work to do.
Once Google has crawled the site, they’ll let you know if any of the pages failed to validate in Search Console.
Maximizing Your AMP Traffic
You will notice that the AMP template doesn’t have a menu or footers or sidebars, or all the bells and whistles we expect from WordPress. All this hypothetical traffic from Google mobile search won’t mean anything if you can’t keep visitors on your site. So try adding this code to your functions.php, so any users who get to the bottom of your content won’t be left hanging:
////A little message for the end of AMP pages/////
add_action( 'amp_post_template_footer', 'callToActionAmp' );
function callToActionAmp() {
$sitelocation = get_site_url();
?><div class="content"><h3>Get more great infotainment <a href="<?php echo $sitelocation; ?>">on our main site</a>!</h3></div><?php
return;
}
And that should more or less have you set up for Accelerated Mobile Pages. Let us know if you get any meaningful traffic from it!
https://tastyplacement.com/wp-content/uploads/accelerated-mobile-pages.jpg321881Matthew Beyhttps://tastyplacement.com/wp-content/uploads/tastyplacementneedssvg.svgMatthew Bey2016-02-22 17:15:462018-10-17 13:34:57How to Implement and Optimize AMP in WordPress
You may have heard that the iPhone’s new voice-command and personal/search assistant “Siri” will be “the end of SEO as we know it.” Undoubtedly a shift is coming, but I for one doubt it will be as disruptive as the apocolyptos might have you believe. After all, we’re not all going to use only our phones for everything. We like our laptops, and in addition, bargain hunting (AKA commercial search) is deeply ingrained in human nature.
There are a lot of fun things Siri can do including transcribing text to voice, setting reminders, playing music, checking the weather, getting directions, and yes carrying out search queries. Undoubtedly, Siri will catch on like wildfire, and as a result will compete with many apps and tools, including search engines.
Optimizing for Siri
The integration of Siri will begin to affect strategies and optimization efforts, but most of these things should be part of an immersive SEO program from the start.
Local Search for Siri
People search from mobile devices on the move; they’re not sitting down to do in-depth research. A majority of mobile searches are location-specific including directions, finding nearby restaurants, or other local services.
With Siri, it’s not about people getting to your website through Google placement alone because visibility comes from other sources. Siri wants to give users a visual experience and draws data from local listing sites such as Yelp, Google Maps, Citysearch, YP, etc. There are more than 60 of these sites on which it is well worth your time to create a listing. It’s not just for Siri, getting listed on (and links from) all these sites improves local listing and organic placements in SERPs as well.
Obviously, you’ll want your information to be correct, up to date, and fully filled out on these sites with accurate address, phone number, images, positive reviews, and a high number of ratings. For more info on local optimization, check out our post on local listings SEO.
Rich Snippets and Schema Tags
Schema.org lets you use a specific markup language (web code) to identify specific information about your business and web presence and make that information more easily found by search engines.
Search engines are using on-page tags in a variety of ways. Google uses them to create rich snippets in search results and will continue to do so more and more. These snippets include author information, address, phone number, operating hours, and so on. So you can see how these tags have value to local searches such as are the focus of Siri. Offering a highly structured format for this information makes it that much easier to be found.
Variety in Linkbuilding and Long Tail Keywords
This is the first version of Siri, and its depth of language capabilities will continue to increase with new versions. Therefore the following effect will only continue to grow. Already, the length of Siri queries are longer because users are searching in natural speech rather than pecking away at keyboards or small iPhone touchscreens.
The result is more long-tail and highly targeted searches. Optimizing for long-tail means more words on the page and more flexible link building. Both of these strategies work in organic search as well, so you won’t even have to duplicate your efforts.
It used to be that you chose your anchor text and could simply bang away at it over and over. With enough links, you’d move on up. That hasn’t been best practice for a while, and Google is becoming even more focused on natural-looking anchor text profiles. Not only is this a safety-first method, but it’s also more efficient. Flexible anchor text (anchor text with the keyword integrated here and there, but also broadly varied) is more efficient in increasing rankings, even for the targeted, high-volume terms.
Back to Siri, the efforts you make to naturalize and get the most out of your link profile will also help you rank for long-tail searches, which Siri is all about. As a bonus, long tail searches are more targeted to the specific needs of a given search query and therefore convert at higher rates.
The iPhone 4s (S is for Siri? Seems that way to me…) is Apple’s best-selling phone to date, with 4 million sales in three days. Verizon started carrying the iPhone earlier this year and even Sprint has had no choice but to jump on the bandwagon. It’s a monolith, and it’s the impetus for a new fold of search optimization.