有没有办法获取 Blogger 中当前帖子的 URL?

发布于 2024-10-13 03:59:13 字数 33 浏览 2 评论 0原文

我需要一些分享按钮的帖子 URL。有办法找回吗?谢谢

I need the post URL for some Share buttons. Is there a way to retrieve it? Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

凉城 2024-10-20 03:59:13

您可以通过布局数据标记检索帖子网址: data:post.url

如果您只想将其值作为文本插入模板中,请将其用作标签:

如果要对 html 属性使用标记值,请在 html 属性前面添加前缀 expr,例如:

<body expr:class='data:blog.mobileClass'>
  ...
</body>

You can retrieve the post URL via a layout data tag: data:post.url

If you just want to insert its value as text in your template, use it as tag: <data:post.url>

If you want to use a tag value for a html attribute, precede the html attribute with the prefix expr, for example:

<body expr:class='data:blog.mobileClass'>
  ...
</body>
八巷 2024-10-20 03:59:13

我在我的博客(www.it.itmrk.com)中使用了以下脚本,该脚本对我有用。

<script type='text/javascript'>
     var postUrl = '<data:post.url/>';
     document.write("<div class="fb-like" data-href='" + postUrl + "' data-layout="standard" data-action="recommend" data-show-faces="true" data-share="true"></div>");
</script>

它相应地给出了每个帖子的链接。它也可能对你有帮助。

I Used below script in my blog (www.it.itmrk.com), which is working for me.

<script type='text/javascript'>
     var postUrl = '<data:post.url/>';
     document.write("<div class="fb-like" data-href='" + postUrl + "' data-layout="standard" data-action="recommend" data-show-faces="true" data-share="true"></div>");
</script>

Its give link of each post accordingly. It might help full for you also.

一曲爱恨情仇 2024-10-20 03:59:13

您必须创建一个表达式,然后命名元数据,并将您将拥有的值放在引号中。这样,博主就知道什么将表达式转换为“div”的元数据

示例代码:

<div class="fb-like"  expr:data-href='data:post.url' data-layout="standard" data-action="like" data-size="small" data-show-faces="true" data-share="true"></div>

You must create an expression, then name the metadata, and in quotation marks the value that you will have. In this way, blogger knows what convets the expression to metadata of the "div"

example code:

<div class="fb-like"  expr:data-href='data:post.url' data-layout="standard" data-action="like" data-size="small" data-show-faces="true" data-share="true"></div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文