Poyraz adlı üyeden alıntı

teşekkürler kod için kalashnikov




Rica ederim.

Ek Olarak: Yorum sayısını da içeren kod ise şöyle

< ?php
$numposts = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_status = 'publish'");
if (0 < $numposts) $numposts = number_format($numposts);
$numcomms = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = '1'");
if (0 < $numcomms) $numcomms = number_format($numcomms);
$numcats = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->categories");
if (0 < $numcats) $numcats = number_format($numcats);
?>

< ?php echo 'Sitemize ' . $numposts . ' gönderi yazılmış ve ' . $numcomms . ' yorum almıştır. ' . $numcats . ' '; ?>