function wpsc_show_categories($content = '')
{
    if (preg_match("/\\[showcategories\\]/", $content)) {
        $GLOBALS['nzshpcrt_activateshpcrt'] = true;
        $output = nzshpcrt_display_categories_groups();
        return preg_replace("/(<p>)*\\[showcategories\\](<\\/p>)*/", $output, $content);
    } else {
        return $content;
    }
}
Exemple #2
0
<?php

get_header();
?>

<div id="content">
	<div id="contentleft">
		<div class="postarea">
			<?php 
echo nzshpcrt_display_categories_groups();
?>
        </div>
	</div>
</div>

<!-- The main column ends  -->

<?php 
get_footer();