Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created March 27, 2019 15:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KaineLabs/86bc41c2d427ef3cffe4e3f0329652f6 to your computer and use it in GitHub Desktop.
Save KaineLabs/86bc41c2d427ef3cffe4e3f0329652f6 to your computer and use it in GitHub Desktop.
Total Activity Comments Shortcode [yz_total_activity_comments user_id=""]
<?php
/**
* Get User Comments Count.
*/
function yzc_get_total_comments_shortcode( $args = null ) {
global $bp, $wpdb;
// Get Shortcode Args.
$args = wp_parse_args( $args, array(
'user_id' => false,
)
);
// Get Global Request
$request = "SELECT COUNT(*) FROM {$bp->activity->table_name} WHERE component = 'activity' AND type = 'activity_comment'";
if ( ! empty( $args['user_id'] ) ) {
$request .= " AND user_id = {$args['user_id']} ";
}
return $wpdb->get_var( $request );
}
add_shortcode( 'yz_total_activity_comments', 'yzc_get_total_comments_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment