codecamp

文章内页制作

文章内页制作

上一页下一页

可用变量

    {$term_id 文章分类id,对应于表terms里的term_id;
    {$post_author}<br><!-- 文章作者id,后台管理员,对应于表users里的ID;-->
    {$post_keywords}<br><!---->
    {$post_date}<br><!-- 文章发布日期 格式2014-01-01 00:00:00-->
    {$post_content}<br><!-- 文章内容-->
    {$post_title}<br><!-- 文章标题-->
    {$post_excerpt}<br><!-- 文章摘要-->
    {$post_modified}<br><!-- 文章更新日期 格式2014-01-01 00:00:00-->
    {$smeta}<br><!-- 文章扩展属性,以json格式保存,如属性thumb文章缩略图,以后还会增加很多-->
    {$user_nicename}<br><!-- 管理员昵称-->
    {$user_email}<br><!-- 管理员邮箱-->

对变量smeta的转化

    <php>
    /*处理smeta*/
    $smeta=json_decode($smeta,true);/*把smeta转化成数组*/
    </php>
    {$smeta.thumb}<br><!-- thumb文章缩略图,以后还会增加很多-->
    
    <img src="https://atts.w3cschool.cn/attachments/image/cimg/{$smeta.thumb}"/>

上一页下一页

文章列表页制作
页面制作
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

后台管理

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }