Drupal主题化RSS提要视图
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal主题化RSS提要视图相关的知识,希望对你有一定的参考价值。
This will build over time, and first be finish when I have all ressources and are satisfied with our corporate rss feed.
http://www.appnovation.com/drupal-theming-rss-feed-views http://laryn.kragtbakker.com/blog/drupal-views-cck-rss-theming http://drupal.org/node/550420 contemplate -> node-blog-rss.tpl.php <?php /* * Created on Apr 13, 2011 * * To change the template for this generated file go to * Window - Preferences - PHPeclipse - PHP - Code Templates */ $blog = node_load($node->nid); global $base_url; ?> <div> <div id="image"> <?php global $base_url; print '<img src="' . $base_url . '/' . $node->field_blog_image[0]['filepath'] . '" alt="' . $blog->title . '" />'; ?> </div> <div id="text"> <?php print $blog->body; ?> </div> </div>
以上是关于Drupal主题化RSS提要视图的主要内容,如果未能解决你的问题,请参考以下文章