Posts Tagged ‘nextgen’

Splitting nextgen gallery form the_content

Want to show the nextgen gallery somewhere else than the rest of the content? Add this to your functions.php // shows the content echo ngg_content_split(“content”); // shows the gallery echo ngg_content_split(“gallery”) function ngg_content_split($get=”content”){ //get the post content $content_data = get_the_content(); //extract shortcode from content preg_match(“/\[ngg([^}]*)\]/”, $content_data ,$matches); $results = $matches[1]; //if shortcode exists in content if (!empty($results) [...]