如何在 tumblr 自定义 HTML 主题中使用内容源字段?

发布于 2024-10-17 04:28:44 字数 306 浏览 2 评论 0原文

我正在尝试在 tumblr.com 中创建自定义 HTML 主题,我想使用图像上突出显示的内容源字段 - https://i.sstatic.net/5xkM5.jpg

例如,我想在帖子下方放置自定义说明:

>  Original post you can see <a
> href="$content_source_field">hire

请帮助我编写主题的代码。

I'm trying to create a custom HTML theme in tumblr.com I'd like to use a content source field which is highlighted on image - https://i.sstatic.net/5xkM5.jpg

For example I want to place a custom discription below a post:

>  Original post you can see <a
> href="$content_source_field">hire

Please help me with code for my theme.

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

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

发布评论

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

评论(2

记忆之渊 2024-10-24 04:28:44

使用“$content_source_field”的变量是 tumblr 会自动确定的变量,您无需将其设置为任何特定值。

为了让 tumblr 知道要使用哪个 URL(内容源或帖子条目),您需要使用 {LinkURL} 作为 href 值。

The variable that use "$content_source_field" is something that tumblr will automatically determine, you don't need to set it to anything specific.

In order for tumblr to know which URL to use (either the content source or the post entry), you'll need to use {LinkURL} as the href value.

柳若烟 2024-10-24 04:28:44

使用 {block:ContentSource} 变量为了这。如果您定义了它,tumblr 不会覆盖它。不要忘记添加一个 {block:RebloggingFrom} 变量;否则 tumblr 会自动添加via {some resource}

{block:ContentSource}
    Original post you can see <a href="{SourceURL}">here</a>
    via {block:RebloggedFrom}<a href="{ReblogParentURL}">{ReblogParentTitle}</a>{/block:RebloggedFrom}
{/block:ContentSource}

Use {block:ContentSource} variable for this. If you define it, tumblr won't override it. Dont forget to add a {block:RebloggedFrom} variable too; otherwise tumblr will add the via {some resource} automatically:

{block:ContentSource}
    Original post you can see <a href="{SourceURL}">here</a>
    via {block:RebloggedFrom}<a href="{ReblogParentURL}">{ReblogParentTitle}</a>{/block:RebloggedFrom}
{/block:ContentSource}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文