Advertisement
phpface

Untitled

Oct 2nd, 2021 (edited)
533
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. function videotube_add_post_view_bottom( $content ){
  2.     $post_view = videotube_get_count_viewed();
  3.     if( is_main_query() && is_singular( 'video' ) ){
  4.         $content = sprintf( _n( '%s view', '%s views', $count, 'videotube' ), number_format_i18n( $post_view ) ) . $content;
  5.     }
  6.     return $content;
  7. }
  8. add_filter( 'the_content', 'videotube_add_post_view_bottom', 10, 1 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement