/** * * get posts from specific posts list */ private function getPostsFromSpecificList() { $strPosts = $this->getParam("posts_list", ""); $arrPosts = UniteFunctionsWPRev::getPostsByIDs($strPosts); return $arrPosts; }
/** * * 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; }