Skip to content

Instantly share code, notes, and snippets.

@Alimir
Created February 9, 2023 12:08
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 Alimir/d0f45b86ce0ab74a3f9323366764f882 to your computer and use it in GitHub Desktop.
Save Alimir/d0f45b86ce0ab74a3f9323366764f882 to your computer and use it in GitHub Desktop.
wp ulike shortcode to get stats values
<?php
function wp_ulike_custom_stats_shortcode( $atts, $content = null ){
// Default Args
$args = shortcode_atts( array(
"period" => 'all' // you can use all, today, yesterday values
), $atts );
return wp_ulike_count_all_logs( $args['period'] );
}
add_shortcode( 'wp_ulike_custom_stats', 'wp_ulike_custom_stats_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment