Advertisement
designbymerovingi

Custom Shortcode: Buy Content History

May 5th, 2015
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. add_shortcode( 'buy_content_history', 'mycred_pro_buy_content_history' );
  2. function mycred_pro_buy_content_history( $attr, $content = '' ) {
  3.  
  4. if ( ! function_exists( 'mycred_render_shortcode_history' ) ) return '';
  5.  
  6. $now = current_time( 'timestamp' );
  7.  
  8. $start = strtotime( 'first day of last month', $now );
  9. $end = strtotime( 'last day of last month', $now );
  10.  
  11. $args = array(
  12. 'ref' => 'buy_content',
  13. 'time' => $start . ',' . $end
  14. );
  15.  
  16. return mycred_render_shortcode_history( $args );
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement