Skip to content

Instantly share code, notes, and snippets.

@nirendra
nirendra / getPageTitle
Created November 27, 2013 23:21
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);
@nirendra
nirendra / 0_reuse_code.js
Created November 27, 2013 21:33
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console