Skip to content

Instantly share code, notes, and snippets.

@nirendra
Created November 27, 2013 23:21
Show Gist options
  • Select an option

  • Save nirendra/7684790 to your computer and use it in GitHub Desktop.

Select an option

Save nirendra/7684790 to your computer and use it in GitHub Desktop.
Get page title based on id
function webspec_get_title($my_id) {
$post_id_5369 = get_post($my_id);
$title = $post_id_5369->post_title;
$title = apply_filters('the_title', $title);
$title = str_replace(']]>', ']]>', $title);
echo $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment