i want to show the count of question and ansers

5.68K viewsCore
0

so i use this code

<?php
$count_posts = wp_count_posts(Questions);
echo $count_posts->publish;
?>

it’s not working idont know why
is the custom post have another name ?
if so what is the name of the custom post for questions and answers

1

There is mistake in your code, use this:

<?php
    $count = wp_count_posts('question');
    echo var_dump($count);
?>
You are viewing 1 out of 3 answers, click here to view all answers.