liebes forum, ich habe folgende query-posts-abfrage und möchte alle unter "<?php mdv_post_word_count(true); ?>"-ausgegebenen zahlen (dreistellig, zum bsp. die zahl 343) am ende zu einer einzigen zahl zusammenrechnen ( also zum bsp. 343+201+524=1068 ) wie könnte das gehen? hat jemand eine idee, einen ansatz? besten dank!
<?php query_posts('author=15&monthnum=4'); ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_author(); ?> | <?php the_time(get_option('date_format')); ?> | <?php mdv_post_word_count(true); ?>
| <?php the_title(); ?> | <?php the_tags( '', ', ', ''); ?> | <?php the_category(', ') ?>
<?php endwhile; ?>
<?php query_posts('author=15&monthnum=4'); ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_author(); ?> | <?php the_time(get_option('date_format')); ?> | <?php mdv_post_word_count(true); ?>
| <?php the_title(); ?> | <?php the_tags( '', ', ', ''); ?> | <?php the_category(', ') ?>
<?php endwhile; ?>
Kommentar