// Function to get the current page title function get_current_page_title() { return get_the_title(); //also if you want id then replace title with id } // Register the shortcode function register_page_title_shortcode() { add_shortcode('page-title', 'get_current_page_title'); } add_action('init', 'register_page_title_shortcode'); //to get the visitor visiting page id: $page_id = get_current_page_id();
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter