-
Notifications
You must be signed in to change notification settings - Fork 383
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add theme support scenarios: allow paired mode to serve some content exclusively in AMP #934
Comments
This scenario would work best in cases where the quality of the content is not diminished by the preprocessor. Combined with the opt-in capability it would empower the site owner. |
Alternatively (or additionally), we could have a similar scenario where instead of having a single version of the content (the AMP version) we can generate a paired mode version, based on the original theme. In cases where the plugin can process 100% of the content without loss, the result is in two identical pages; but in cases where the fidelity is not 100%, the result would be a paired mode with the same look and feel as the original theme (because is the same) but with some functionality stripped down. |
Yes, this would be accounted for here too more or less: add_theme_support( 'amp', array(
'active_callback' => function() { return AMP_OPTIONAL; }
) ); By not defining the |
@amedina Something else to note here that this optional |
@westonruter that is a good strategy. An additional case (optimization) could be derived in cases where the user opts in for the new pair mode (based on the original theme) and when converting a given content type, if the preprocessor detects 100% fidelity (i.e. no functionality stripped out) the plugin generates a single version of the content (i.e. AMP canonical); otherwise stays in pair mode. This would be sort of a hybrid pair-canonical mode. |
There's one more variation on the canonical/native/ |
In “AMP Optional” mode, the opt-out option should be made available to the user in the post editor, where it is normally not available in native (non-paired) mode. The scenario here I'm thinking of is you have a site where everything is served as AMP normally, but you have one exception where you want to serve non-AMP content. In effect, this would be like having the |
/cc @ericlindley-g |
Glad to see this discussion. I am not sure if this warrants a new issue, but I have a related scenario. The "paired" mode is just fine for most of our publishers with mostly mobile traffic landing on AMP. Serving AMP is just perfect for mobile. Projects like AMP for WP get it right for practical needs here where they have a whole "amp theme" just for mobile version of the site - sort of Jetpack mobile theme concept. As much as some of would like to have native AMP everything, it's not practical to have AMP-only websites just yet in most of the advanced themes and websites in the wild. Too many custom elements/widgets, too much JS-based functionality, unsupported ad network, control over every element like popups, notifications, and so on. It would have been great to have support for home, archives, and so on for paired mode with overridable templates for each by themes, like AMP for WP / similar plugins. Since that's probably not going to happen now, I would like to suggest a related approach. Similar to 3 and 4 but not exactly the same:
A way to enable the AMP Native mode for mobile devices only would be just fine, but that has discovery issue - the /amp/ would still have to be added as rel=amphtml link tag. |
@asadkn What you're asking for is now possible as of 0.7, once you add |
Related to #1196 which adds an options for enabling
|
I'm going to start working on this to be included in 1.0-beta1. |
I've found that adding support for allowing canonical/native AMP to be used on a subset of URLs for a site causes problems with |
Another issue here is in regards to AMP-specific Gutenberg blocks (like MathML and Time-ago): since these blocks only work in AMP, the plugin only makes them available when in native mode. But if a site is only partially native, then it could very well be that an AMP component will end up getting served on a non-AMP page, and thus would be broken. |
So yeah ampproject/amphtml#15583 is resolved (and it's not certain whether it will be accepted) then the plugin will not allow non-valid AMP markup to be served in AMP responses, and it will avoid serving any AMP runtime or component scripts in non-AMP responses. Until that time, it would be problematic for a site that only wants to AMP their single posts, since if a post contains any AMP markup then it would fail to render on non-singular templates, such as the homepage, category archive, or author page. |
Otherwise, it's not so much of a challenge for the plugin but rather a problem for plugins and themes that want to integrate with AMP. In particular, they need to know as early as possible if the page is going to end up being rendered as AMP. This allows themes and plugins to swap out which hooks are used for rendering the response (e.g. whether AMP components or custom scripts will be used). WordPress only determines whether the current URL is for a singular post or something relatively late in the process, so that means plugins and themes need to “hold their breath”. This is something that we could make a requirement if needed, but it will require plugins and themes to do some more work to make themselves AMP-compatible. If this is going to be a requirement, then it is important that we make the decision now before 1.0 is released. @gravityrail what are your thoughts on this in relation to making Jetpack AMP-compatible? |
I talked it over with @pbakaus and the use case of having a native subset of URLs on a site is an important use case, such as for e-commerce. So we'll have re-impose the requirement that the In the case of AMP content from a post appearing on non-AMP pages, we'll go ahead and serve these as dirty AMP. That is, when there is AMP content in a post, we'll load the AMP runtime and the required component scripts. We will, however, continue to limit the use of AMP-based Gutenberg blocks to when a site is in native mode, so this issue will hopefully be mitigated. Also, in contrast with my initial proposal for add_theme_support( 'amp', array(
'available_callback' => 'is_single',
) ); Or if you want to make the single posts available in paired URLs, you could do: add_theme_support( 'amp', array(
'paired' => true,
'available_callback' => 'is_single',
) ); The existing behavior of the plugin is to presume paired mode is intended if a |
Thanks for that! I really believe it will feel natural to many WordPress site owners to make certain pages all AMP all the time, and other pages never AMP. Most WP pages are simple, and as long as they look the same as AMP or non-AMP, why use paired mode? In such cases I think AMP is simply better. And then, if there are pages that truly require JS, those can simply be non-AMP. I just hope this doesn't prove difficult for those who make themes, those who make plugins, or you, the fearless developers of this plugin! |
+1 to the e-comm use case needing support for some page types to be non-AMP Just to make sure I understand: @westonruter , will this make it possible to publish "dirty AMP" pages for end users (which I think we still want to avoid), or will this just enable the use of "dirty AMP" during the page creation / authoring flow (which seems OK)? /cc @cramforce for visibility on the use of invalid AMP in the AMP plugin for WordPress |
@ericlindley-g It's actually not about using AMP components in the authoring interface; this is currently blocked because AMP components can't be easily used in React, for example. This PR still tries to avoid dirty AMP as much as possible, but it does allow it on the frontend in a corner case. If you have selected the Paired mode, where content is expected to be served in AMP and non-AMP pages, then the AMP-specific Gutenberg blocks are not made available to the user in the Inserter. (This would exclude blocks for AMP Stories in #968 since they by very nature are only served in AMP regardless of template mode.) The AMP-specific Gutenberg blocks are only made available to the user if they have selected the native mode (aka canonical, aka AMP as foundation). In the native mode, it is expected that the majority of the site's templates would be served in AMP, thus it makes sense that AMP-specific content should be allowed. Now, the situation for dirty AMP can arise now where:
In this scenario, when the post appears on a non-singular template, it can include AMP-specific markup in it which requires the AMP runtime to be loaded to render. This PR does not allow for an AMP document to be served with invalid AMP markup. What it does allow is for AMP components (in post content) and the dependent AMP runtime & component scripts to be loaded on non-AMP documents so that the content will not be broken. But, this is not without issues either, as described in ampproject/amphtml#15583. So its not dirty AMP documents (no |
@westonruter Got it — thanks! That's really useful to understand. I would take the same approach with the two cases you describe (using AMP components & runtime with or without html[amp]), since they both run into the same issues with resource management, but maybe there are reasons to think of them differently? Will discuss more in real-time. |
@ericlindley-g Yeah, at the moment there could be broken content in either case: either an AMP component could be broken (unrecognized) in a non-AMP document, or it could be recognized but some non-AMP resources on the page could have issues initializing. Which is the lesser of two evils? @pbakaus Any thoughts on this to follow-up on our conversation? |
Moving To "Ready For Merging" If it's alright, I'm moving this to "Ready For Merging." If you think this could use functional testing, feel free to move it back. |
The plugin in
amp
theme support currently supports two modes:There is a third case that should be supported and that is:
Now that we have full-document sanitization in #929, the a non-AMP template can actually be served as totally valid AMP, with
amp
attribute added to thehtml
element, meta viewport being added, and CSS boilerplate code. So we can actually use the exact same templates in AMP as non-AMP. We don't readily make this easy in paired mode, as to do paired mode theamp
theme support must define atemplate_dir
for where to locate the AMP templates, like:When a paired-mode site only allows a subset of content to be shown in AMP (e.g. just singular posts), they can explicitly indicate this with the
available_callback
property:However, in order to support re-using templates between AMP and non-AMP we should also be able to do:
Without this, you have to do a needless hack of setting the
template_dir
to.
or add asingle.php
in the template directory that just doesrequire __DIR__ . '../single.php';
Lastly, there is a fourth mode that should be doable:
In the fourth mode there should not be two versions of any one URL. There would be no
/amp/
endpoints, and noamphtml
links on AMP content. Content in AMP and non-AMP would be disjoint sets. To do this, there would need to probably need to be something different fromavailable_callback
in the theme support, or rather instead of this callback returning a boolean flag it should actually be tri-state:For example, if you wanted to serve AMP-only posts, AMP optionally for pages, and omit AMP everywhere else, you could do:
The text was updated successfully, but these errors were encountered: