[ad_1]
Hi everybody,
i’m trying to get the total number of posts from four different posts types, added into one number. From the “normal” WordPress Posts and three custom Post Types (discussions,review,community). I tried working with the normal short code (see below) but couldn’t get it to include all post types into one single number.
function gooloo_total_posts() {
$total = wp_count_posts()->publish;
return $total;
}
add_shortcode(‘total_posts’, ‘gooloo_total_posts’);
