Wordpress get page details programatically

PHOTO EMBED

Mon Aug 19 2024 18:24:23 GMT+0000 (Coordinated Universal Time)

Saved by @Alihaan #php

// 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();

content_copyCOPY