一些站长朋友希望在自己的首页显示一篇文章或者指定一个页面的内容,这样一来就可以修改文章内容实现修改首页的目的,期权记小编提供代修改方法如下:
找到你的主题template文件夹中的index.php,将其中的
{foreach $articles as $article} {if $article.IsTop} {template:post-istop} {else} {template:post-multi} {/if} {/foreach}
更改为以下代码即可
{php} $indexpostid='105';//需要展示在首页的文章或者页面ID,可以在文章管理处查看。 $indexpost=GetPost($id); {/php} <div> <a href="{$indexpost.Url}">{$indexpost.Title}</a> <div>{$indexpost.Content}</div> </div>
以上代码仅为演示,具体的html标签需要替换成为你的主题相关代码,css样式自已定义:否则可能会出现错位等问题。
原文链接:https://www.qiquanji.com/post/8186.html
本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。
微信扫码关注
更新实时通知