好的,所以我试图找出是否有办法检测并比较Tumblr的帖子/页面的URL /永久链接和自定义URL。
主要想法是使用Tumblr作为由PayPal支持的商店/销售平台,并通过使用预呈现链接(下面)在页面的头部预呈现PayPal链接 - 以加快支付过程。 但是,每个Tumblr帖子应该只有一个链接(如下所示),而不是所有帖子。
<link rel="prerender" href="http://www.paypal.com/pay-link-for-my-product-1">
所以我到目前为止的是:
{block:Permalink} //detects if Tumblr URL is a post/page
{Permalink} //gets the URL of the post/page
{/block:Permalink}
我需要的是这样的事情:
{block:Permalink} //detects if Tumblr URL is a post/page
{Permalink=http://example.com/post/my-product-1} //not working
{/block:Permalink}
我不知道这是否可以使用Tumblr代码而且我不需要javascript替代品,因为它将无用于此目的。