when I put this code to my template
<?php
$bilangan=the_author_posts();
if ($bilangan!="0")
echo "has entry";
?>
the ouput will be
1has entry
the question is, how can I hide the output number 1?
number 1 is an example of how many post
when I put this code to my template
<?php
$bilangan=the_author_posts();
if ($bilangan!="0")
echo "has entry";
?>
the ouput will be
1has entry
the question is, how can I hide the output number 1?
number 1 is an example of how many post
You must log in to post.