Mini istatistik
$args=array(
'orderby' => 'name',
'order' => 'ASC'
);
$categories=get_categories($args);
$cat_count = 0;
foreach($categories as $c) {
$cat_count++;
}
$count_posts = wp_count_posts();
$published = $count_posts->publish;
?>
Şu anda sitemizde ayrı kategoride, toplam adet makale bulunmaktadır.
kalashnikov adlı üyeden alıntı
BuyrunMini istatistik
$args=array(
'orderby' => 'name',
'order' => 'ASC'
);
$categories=get_categories($args);
$cat_count = 0;
foreach($categories as $c) {
$cat_count++;
}
$count_posts = wp_count_posts();
$published = $count_posts->publish;
?>
Şu anda sitemizde ayrı kategoride, toplam adet makale bulunmaktadır.
< ?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 . ' '; ?>
$args=array(
‘orderby’ => ‘name’,
‘order’ => ‘ASC’
);
$categories=get_categories($args);
$cat_count = 0;
foreach($categories as $c) {
$cat_count++;
}
$count_posts = wp_count_posts();
$published = $count_posts->publish;
?>
Web sitemizde kategori‘de makale’ye yazılmış get_var("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = ’1′");?> yorum bulunmaktadır.
kalashnikov adlı üyeden alıntı
Düzeltilmiş halini veriyorum.$args=array(
‘orderby’ => ‘name’,
‘order’ => ‘ASC’
);
$categories=get_categories($args);
$cat_count = 0;
foreach($categories as $c) {
$cat_count++;
}
$count_posts = wp_count_posts();
$published = $count_posts->publish;
?>
Web sitemizde kategori‘de makale’ye yazılmış get_var("SELECT COUNT(*) FROM $wpdb->comments WHERE comment_approved = ’1′");?> yorum bulunmaktadır.