Script 1. Resultat blir x.
Citat:
<?php
$args = array(
'post_author' => '' // fill in post author ID
);
$author_comments = get_comments($args);
echo count($author_comments);
?>
Script 2. Resultat blir z.
Citat:
<?php echo '<span style="color:#fff;">test</span>' . count_user_posts( get_the_author_meta('ID') ); ?>
Hur gör jag för att echo resultatet av x och z?
Vi säger att x är 1 och z är 1 hur får jag totala summan alltså 2?
Alltså plussa ihop de här.
Citat:
count($author_comments) + count_user_posts( get_the_author_meta('ID') )