我正在使用joomla newsflash来显示我主页中的5个最新项目。新闻快讯附在我的新闻和事件类别。现在我需要一个新闻&事件项目不会显示在我的主页newsFlash中。有可能吗?,谢谢
答案 0 :(得分:1)
对于Joomla 1.5.26,模板覆盖可能是您最好的选择。请参阅此处了解如何完成:http://forum.joomla.org/viewtopic.php?t=145996
在您的情况下,您将在
创建一个新文件/templates/your_template/html/mod_newsflash/_item.php
您将以下代码放在该文件中。请务必将“99”替换为文章的ID。您可以从Article Manager表中获取它。
<?php // no direct access
defined('_JEXEC') or die('Restricted access'); ?>
<?php
$my_article_id = $item->id;
if ($my_article_id !== '99') :
if ($params->get('item_title')) : ?>
<table class="contentpaneopen<?php echo $params->get( 'moduleclass_sfx' ); ?>">
<tr>
<td class="contentheading<?php echo $params->get( 'moduleclass_sfx' ); ?>" width="100%">
<?php if ($params->get('link_titles') && $item->linkOn != '') : ?>
<a href="<?php echo $item->linkOn;?>" class="contentpagetitle<?php echo $params->get( 'moduleclass_sfx' ); ?>">
<?php echo $item->title;?></a>
<?php else : ?>
<?php echo $item->title; ?>
<?php endif; ?>
</td>
</tr>
</table>
<?php endif; ?>
<?php if (!$params->get('intro_only')) :
echo $item->afterDisplayTitle;
endif; ?>
<?php echo $item->beforeDisplayContent; ?>
<table class="contentpaneopen<?php echo $params->get( 'moduleclass_sfx' ); ?>">
<tr>
<td valign="top" ><?php echo $item->text; ?></td>
</tr>
<tr>
<td valign="top" >
<?php if (isset($item->linkOn) && $item->readmore && $params->get('readmore')) :
echo '<a class="readmore" href="'.$item->linkOn.'">'.$item->linkText.'</a>';
endif; ?>
</td>
</tr>
</table>
<?php endif; ?>
相关代码位于第二个也是最后一个PHP标记中,我在其中插入了一个IF检查,它会查找您的文章ID并在匹配时跳过它。