Guest User

Untitled

a guest
Dec 25th, 2023
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. add_shortcode('nectar_blog_post_view_count', 'nectar_blog_post_view_count_callback');
  2. function nectar_blog_post_view_count_callback() {
  3. $post_id = get_the_ID();
  4.  
  5. $view_count = get_post_meta($post_id, 'nectar_blog_post_view_count', true);
  6.  
  7. if ($view_count !== '') {
  8. return 'Post Views: ' . esc_html($view_count);
  9. } else {
  10. return 'Post Views: 0'; // Default value if the meta key is not set
  11. }
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment