/**
  * 
  * get posts from specific posts list
  */
 private function getPostsFromSpecificList()
 {
     $strPosts = $this->getParam("posts_list", "");
     $arrPosts = UniteFunctionsWPRev::getPostsByIDs($strPosts);
     return $arrPosts;
 }
示例#2
0
 /**
  * 
  * get posts from specific posts list
  */
 private function getPostsFromSpecificList()
 {
     $strPosts = $this->getParam("posts_list", "");
     $strPosts = apply_filters('revslider_set_posts_list', $strPosts);
     $arrPosts = UniteFunctionsWPRev::getPostsByIDs($strPosts);
     return $arrPosts;
 }