獲取文章的各種方式

2018-02-24 15:44 更新

獲取文章的各種方式

上一頁下一頁

sp_sql_posts()

示例:

<??php
$tag='cid:6;field:post_title,post_content;order:listorder?asc';
$posts=sp_sql_posts($tag);?
print_r($posts);
$smeta=json_decode($vo['smeta'],true);?//smeta處理方法,將其轉(zhuǎn)化為數(shù)組
?>

$tag規(guī)則:

cid 分類id;

field 需要取出的內(nèi)容,默認取出所有信息;order排序方式,可根據(jù)任何取出的字段排序,默認為按發(fā)布時間排序。

field可選參數(shù):

term_id ? ? 文章分類id

post_author ? ? 文章作者id,后臺管理員,對應于表users里的ID;

post_keywords ? ??

post_date ? ? 文章發(fā)布日期 格式2014-01-01 00:00:00

post_content ? ? 文章內(nèi)容

post_title ? ? 文章標題

post_excerpt ? ? 文章摘要

post_modified ? ? 文章更新日期 格式2014-01-01 00:00:00

smeta ? ? 文章擴展屬性,以json格式保存,如屬性thumb文章縮略圖

user_nicename ? ? 管理員昵稱

user_email ? ? 管理員郵箱

模板中用法:

<php>
$posts=sp_sql_posts('cid:6;field:post_title,post_content;order:listorder?asc');
</php>

<foreach?name="posts"?item="vo">??/*?遍歷數(shù)組?*/
????{$vo.term_id?}<br>
????{$vo.post_author?}<br>
????{$vo.post_keywords?}<br>
????{$vo.post_date?}<br>
????{$vo.post_content?}<br>
????{$vo.post_title?}<br>
????{$vo.post_excerpt?}<br>
????{$vo.post_modified}<br>
????{$vo.user_nicename?}<br>
????{$vo.user_email?}<br>
????<php>
????$smeta=json_decode($vo['smeta'],true);/*?把smeta轉(zhuǎn)化成數(shù)組?*/
????</php>
????<img?src="https://atts.w3cschool.cn/attachments/image/cimg/{$smeta.thumb}"/>
</foreach>

sp_sql_posts_paged()

示例:

<??php
$tag='cid:6;field:post_title,post_content;order:listorder?asc';
$content=sp_sql_posts_paged($tag);?
$posts=$content['posts'];
$pager=$content['page'];
?>

$tag規(guī)則:

cid 分類id;

field 需要取出的內(nèi)容,默認取出所有信息;order排序方式,可根據(jù)任何取出的字段排序,默認為按發(fā)布時間排序。

field可選參數(shù):

term_id ? ? 文章分類id

post_author ? ? 文章作者id,后臺管理員,對應于表users里的ID;

post_keywords ? ??

post_date ? ? 文章發(fā)布日期 格式2014-01-01 00:00:00

post_content ? ? 文章內(nèi)容

post_title ? ? 文章標題

post_excerpt ? ? 文章摘要

post_modified ? ? 文章更新日期 格式2014-01-01 00:00:00

smeta ? ? 文章擴展屬性,以json格式保存,如屬性thumb文章縮略圖

user_nicename ? ? 管理員昵稱

user_email ? ? 管理員郵箱

模板中用法:

<php>
$content=sp_sql_posts_paged('cid:6;field:post_title,post_content;order:listorder?asc');
</php>

<foreach?name="content['posts']"?item="vo">??/*?遍歷數(shù)組?*/
????{$vo.term_id?}<br>
????{$vo.post_author?}<br>
????{$vo.post_keywords?}<br>
????{$vo.post_date?}<br>
????{$vo.post_content?}<br>
????{$vo.post_title?}<br>
????{$vo.post_excerpt?}<br>
????{$vo.post_modified}<br>
????{$vo.user_nicename?}<br>
????{$vo.user_email?}<br>
????<php>
????$smeta=json_decode($vo['smeta'],true);/*?把smeta轉(zhuǎn)化成數(shù)組?*/
????</php>
????<img?src="https://atts.w3cschool.cn/attachments/image/cimg/{$smeta.thumb}"/>
</foreach>

<div>{$content.page}</div><!--分頁-->

上一頁下一頁

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號