使用 Blogger(FTP、经典),如何添加对于模板而言过于复杂的功能?
使用经典模板,通过 FTP 发布到自定义域。
我想添加自定义元素,例如:
- 存档帖子的树视图(使用 CSS/JavaScript 扩展)
- 标签云 图像
- 幻灯片
Using classic templates, publishing via FTP to a custom domain.
I want to add custom elements such as:
- a tree view for archived posts (expanding using CSS/JavaScript)
- a tag cloud
- a slideshow of images
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 PHP 来处理通过 FTP 发布的 Blogger 博客。 任何服务器端语言都可以执行此操作(ASP、ASP.NET、Python、JSP...)。
我编写了一个 PHP 脚本 (
blogger_functions.php
) 来扫描 Blogger FTP 的目录并生成一段 HTML 片段来表示存档层次结构 ($snippet
)。我将此 PHP 添加到我的 Blogger 模板的顶部:
将其添加到模板的侧边栏部分:
然后我将 Apache 配置为处理博客的 .html 文件中的 PHP 标签:
位于博客根目录下的 .htaccess 文件中:
通过这种方法,您可以在 Blogger 博客中充分利用 PHP 的功能。
I used PHP to process a Blogger blog after it is published via FTP. Any server side language can do this (ASP, ASP.NET, Python, JSP, ...).
I wrote a PHP script (
blogger_functions.php
) to scan the directory that Blogger FTP's to and generate a snippet of HTML to represent the archive hierarchy ($snippet
).I added this PHP to the top of my Blogger template:
And this to the sidebar part of the template:
Then I configured Apache to process the PHP tags in the blog's .html files by putting
this in a .htaccess file in the root directory of the blog:
With this approach you can use the full power of PHP with a Blogger blog.