2014-12-15, 00:37:51
(2014-12-14, 19:14:14)bensayers Wrote: Hi Martin, I'm using Special Pages to manage customer reviews and I need to display a total count of the reviews (all child pages of the parent "client-reviews") so I can use microdata to calculate the aggregate rating. Is this possible? Thanks in advance!
Something like the following (using the I18n plugin) should work:
Code:
<?php echo count(return_i18n_menu_data('client-reviews', 1, 1, I18N_SHOW_NORMAL); ?>
Just using get-simple core the following might also work:
Code:
<?php echo count(getChildren('client-reviews')); ?>