Drupal:在全视图中提取预告片

时间:2010-11-03 16:07:48

标签: drupal drupal-6 drupal-themes drupal-templates

如何从node.tpl.php中的其他内容中分离预告片,将预告片文本包装在特殊标记中?

1 个答案:

答案 0 :(得分:1)

您可以预处理主题变量以检索预告片并单独存储,否则Drupal会在内部处理它,并且不会给您选择。

以下是代码:http://www.mydiary.digiprosoft.com/?p=244及以下是该链接的重点。


template.php

function phptemplate_preprocess_node(&$variables) {
    // we like to display teasers on the node view pages in a different style,
    // but only if they were NOT set to “show summary on full view” (which seems
    // backward, but the implication with that checkbox is that the teaser is
    // PART of the node’s body, instead of an actual summary of the entire
    // node’s body). if a node’s unbuilt body starts with , then
    // a teaser has been manually set, and “show summary” is not checked.
    if ($variables['page'] == TRUE) { // only do this on full page views.
        $node = node_load($variables['nid']); // we reload the node because
        // by the time it gets here has already been filtered out.
        // this if logic stolen from node.module’s node_teaser_include_verify().
        if (strpos($node->body, '') === 0) {
            $variables['style_teaser_differently'] = TRUE;
            $variables['teaser'] = check_markup($node->teaser, $node->format, FALSE);
        }
    }
}

node.tpl.php

<?php
    if ($style_teaser_differently){
        print '<div class="fullview-teaser">'.$teaser.'<div>';
}
?>