有或沒有職位。我需要在我的Wordpress主題中顯示類別的總數。在Wordpress中計算總分類數量?
0
A
回答
0
<?php
$args = array(
'get' => 'all',
'hide_empty' => 0
);
$categories = get_categories($args);
echo count($categories);
?>
0
一種更直接的方式(也許更快?)
global $wpdb;
$categories_count = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->terms");
echo "<p>Categories count is {$categories_count}</p>";
0
簡單的方法來計算類別是: 1)首先取從WordPress的 2所有類別),使用簡單的PHP功能可按 盡數完整的代碼將是這樣的:
<?php $args = array('parent' => 0, 'hide_empty' => 0);
$categories = get_categories($args);
echo "Total categories : ".count($categories); ?>
我一直用這個代碼:)
相關問題
- 1. 計算總量
- 2. 計算總量
- 3. Mysql計算總分鐘數
- 4. 在SQL中計算總數
- 5. 在gridview中計算總數
- 6. 計算總能量
- 7. 計算向量中值的總數
- 8. 計算百分比總計
- 9. Linq - 分組計算總計
- 10. 計算總數
- 11. 總數計算
- 12. 在wordpress博客文章中計算段落總數
- 13. 計算變量的總和
- 14. JS計算總變化量
- 15. 總數量與jQuery計算插件
- 16. 函數計算postgresql中的總計數
- 17. 如何計算小時:總分鐘數?
- 18. 在Access VBA中,根據變量組的數組計算總數
- 19. 計算總變量總和的問題
- 20. 在Crystal Reports 2008中計算小計佔總計的百分比
- 21. 使用jquery在gridview中計算行總數和總計
- 22. 計算類似ID的分數的總和
- 23. 在Wordpress中簡單計算
- 24. 在sql server表中計算列總數
- 25. 在asp.net Gridview中計算運行總數
- 26. 在PHP中計算數組的總和
- 27. 在SQL Server中計算總數
- 28. 在MySQL中按組計算總數
- 29. 在Netbeans中計算總行數
- 30. 如何計算大熊貓分類變量的滾動計數
不是'wp_terms'表中的所有內容都是一個類別 –