我安装了AW_Blog扩展,但我似乎无法在我的前端找到任何东西(这是我正在处理的自定义构建主题)。我想收到所有帖子(或最后x个帖子),手动将它们放在滑块中。
如何获取.phtml布局文件中的所有帖子?
感谢。
答案 0 :(得分:0)
以下是如何获取10篇最新博文:
<?php
$_sql = "SELECT * FROM `aw_blog` WHERE `status` = 1 ORDER BY `aw_blog`.`post_id` DESC LIMIT 0 , 10";
$_connection = Mage::getSingleton('core/resource')->getConnection('core_read');
foreach ($_connection->fetchAll($_sql) as $_post) {
$_post_date = date("m/d/y", strtotime($_post['created_time']));
$_post_content = strip_tags($_post['post_content']);
$_post_url_slug = $_post['identifier'];
}
?>