在
include_once( PLOG_CLASS_PATH."class/dao/articles.class.php" );
下面句
include_once( PLOG_CLASS_PATH."class/template/menu/menu.class.php" );
看看
謝謝 panying ,添加后問題已經解決,能夠順利執行。
不過還有另一個問題 (不好意思
)
我依據把説明檔裏的代碼copy進main.template裏
看到其中是有包含了 if empty($showAll) (前面有說到控制只讓stickypost顯示在首頁的變數)
但是我啓動外掛后,stickypost還是會出現在文章分類和文章彙整的頁面。
不知道是什麽問題呢?原始模版是connection,是不是模版的相容問題呢?
下面是我的main.template,我只保留了Announce Posts。
-------------------------------------------------------------------------------------------------------
{include file="$blogtemplate/header.template"}
<div id="content">
{if empty($showAll) && $stickyposts->isEnabled()}
<h2>Announce Posts</h2>
{assign var=stickys value=$stickyposts->getArticles('announce')}
{foreach from=$stickys item=post}
<h3><a href="{$url->postPermalink($post)}">{$post->getTopic()}</a></h3>
{/foreach}
{assign var=announceCategory value=$stickyposts->getCategory('announce')}
<h4><a href="{$url->categoryLink($announceCategory)}">More Announce...</a></h4>
{/if}
<div class="post">
{foreach from=$posts item=post}
{include file="$blogtemplate/post.template"}
{/foreach}
</div>
{pager style="links"}
</div>
{include file="$blogtemplate/panel.template"}
{include file="$blogtemplate/footer.template"}