Counting total number of add ans display on site
-
Hello Greg, need some advice.
I would like to display the total number of ads on my site.
Like : Total Ads : xxxxx
Simple as thatIf I need a function in the them created I kind of need something like :
function wpb_total_posts() {
$total = wp_count_posts()->publish;
return $total;
}
add_shortcode(‘total_posts’,’wpb_total_posts’);But I assume that the adds section has their own “prefix” and tables.
Could you tell me what prefix(names) I have to use.something like below I assume…?
function <wpad_total_posts() {
$total = wpad_count_posts()->publish;
return $total;
}
add_shortcode(‘total_posts’,’wpad_total_posts’);Thanks
The page I need help with: [log in to see the link]
- The topic ‘Counting total number of add ans display on site’ is closed to new replies.