function custom_content($content) {
global $post;
if ($_REQUEST['glm_action'] == "detail" ) {
- if ( preg_match_all( '/'. get_shortcode_regex() .'/s', $post->post_content, $matches )
- && array_key_exists( 2, $matches )
- && in_array( 'glm-members-list', $matches[2] ) )
- {
- $shortcode = $matches[0][0];
- $content = $shortcode;
- return $content;
- } else {
- $content=str_replace($matches[0],"",$content);
- return $content;
- }
+
}
return $content;
}