Hello Yii team
i have made the my web completely and i have used this extension to create a sitemap
http://www.yiiframework.com/extension/sitemap-module
sitemap is working well
but it only includes main url like post/index extra
but not the data inside the post
i have added like it for actions
how can i include in my all posts , means all rows in sitemap.xml
'actions' => array(
array(
'route' => 'post/index',
'params' => array( //specify action parameters
'model' => array(
'class' => 'Post',
'criteria' => array('condition' => 'status > NOW()'),
'map' => array(
'postId' => 'id',
'postName' => 'title',
),
),
),
),
),