No idea why however I get a parse syntax error
Parse error: syntax error, unexpected '[' in /home/whataweb/public_html/typestest/wp-content/themes/dynamik/custom-functions.php on line 40
when i add the following to my custom-functons.php file
//Calculates and displays the number of reviews in a post [reviews_total] shortcode: add_shortcode('reviews_total', 'reviews_total_func'); function reviews_total_func() { $child_posts = types_child_posts('reviews'); return count($child_posts); }