在自定义 tumblr 主题中使用 {block:More}
我正在制作一个自定义的 tumblr 主题。我想在我的主题中使用 substr 和阅读更多链接,但我无法做到这一点。如何在自定义 tumblr 主题中剪切文本,文本来自 {caption}。
I am making a custom tumblr theme. i want to use substr in my theme and a read more link, but i am not able to do it. How to cut text in custom tumblr theme, the text is coming through {caption}.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你应该使用 JS,tumblr 允许各种 (jQuery) JS 技巧在页面加载(dom 就绪)后“重新渲染”你的内容。给相关的 HTML 元素一个 id 或类,以便 JS 引用它。
因此,您的帖子标题“在自定义 tumblr 主题中使用 {block:More}”令人困惑。 Tumblrs 块:更多构造不适合您的目的,而是“在具有阅读更多中断的帖子的索引页上呈现”为 http://www.tumblr.com/docs/en/custom_themes 指出。
You should use JS for it, tumblr allows all kinds of (jQuery) JS tricks to "re-render" your content after the page is loaded (dom ready). Give the concerning HTML element an id or class to refer to it by JS.
So, your post title "use {block:More} in custom tumblr theme" is confusing. Tumblrs block:More construct is not for your purpose, but "Rendered on index pages for posts with Read More breaks" as http://www.tumblr.com/docs/en/custom_themes states.