I want to print out a single page I want to specify the content and title of the article
Somewhat similar to the TYPECHO classification under the article output
I looked for 2 hours Baidu did not have this article! Had to solve it!
Reply content:
I want to print out a single page I want to specify the content and title of the article
Somewhat similar to the TYPECHO classification under the article output
I looked for 2 hours Baidu did not have this article! Had to solve it!
Not very clear about your description.
If you want to get a specific article, such as the article CID is known, then you can:
$post = $this->widget('Widget_Archive@post', 'type=post', 'cid=1');$post->title();
If you want to get all the articles under a particular category, such as mid-known, then you can:
$category = $this->widget('Widget_Archive@category', 'pageSize=6&type=category', 'mid=1');while($category->next()){ ... ...}
Reference: "widget_archive common Code Snippets Collection"