Warning: Trying to access array offset on value of type bool in /home/graphicxtreme/public_html/wp-content/plugins/visual-footer-credit-remover/visual-footer-credit-remover.php on line 89

Warning: Trying to access array offset on value of type bool in /home/graphicxtreme/public_html/wp-content/plugins/visual-footer-credit-remover/visual-footer-credit-remover.php on line 90

Warning: Trying to access array offset on value of type bool in /home/graphicxtreme/public_html/wp-content/plugins/visual-footer-credit-remover/visual-footer-credit-remover.php on line 91

How to count custom post types in wordpress


You have custom post types in your wordpress website, and want to count them for different purposes? Well, here is a fast and simple solution on how you can do it.

[php]

<?php
$count_posts = wp_count_posts(‘portfolio’)->publish; //replace portfolio with your custom post type
echo $count_posts; //output the number of posts
?>

[/php]
, ,