How to: How do I make my own shortcodes without plugins?
You’ll probably need to modify this a bit to ensure things get placed where you want them but here’s something I wrote that counts views on posts and displays the view counts for administrators: //ADD TRACKER FUNCTION TO ALL SINGLE VIEWS function custom_hook_tracker( $post_id ) { if( !is_single() ) return; if( empty( $post_id ) ) … Read more