Display entry count at the beginning of calendar days
add_action( ‘frm_before_day_content’, ‘ff_day_count’ ); function ff_day_count( $pass_atts ) { if ( $pass_atts[‘view’]->ID === 608 ) { echo “<h4> Total: ” . $pass_atts[‘day_count’] . “</h4>”; } }Continue reading