• Welcome to the all-new Kolakube support, the official place to get help for Marketers Delight, XFtoWP, CryptoWP, and other WordPress products! Please login with your account details to access members-only support forums.

Simple stats (users, threads, posts) to use in WP theme

racesimcentral

Member
XFtoWP
Messages
23
Reaction score
3
Is there a way to easily get these simple stats from xf to show in a wp theme? Would I have to query the xf db?
 
Solution
Hi @racesimcentral these stats are saved for you already and updated anytime XFWP silently refreshes in the background.

Check out this doc article for instructions on how to access XFtoWP's stored data from the general settings, individual posts, and individual users:

To answer your question specifically, you can reference the following in your theme to access a cached version of your board statistics and other data:

PHP:
$stats = xf_option( array( 'data', 'get_stats', 'totals' ) );

Returns a PHP array:

Code:
Array (
        [threads] => 93
        [messages] => 104
        [users] => 3
)
Hi @racesimcentral these stats are saved for you already and updated anytime XFWP silently refreshes in the background.

Check out this doc article for instructions on how to access XFtoWP's stored data from the general settings, individual posts, and individual users:

To answer your question specifically, you can reference the following in your theme to access a cached version of your board statistics and other data:

PHP:
$stats = xf_option( array( 'data', 'get_stats', 'totals' ) );

Returns a PHP array:

Code:
Array (
        [threads] => 93
        [messages] => 104
        [users] => 3
)
 
Comment
Solution
Back
Top