hsquareweb
6/15/2012 - 10:03 PM

WP: The Parent Slug

WP: The Parent Slug

// inside functions.php
function the_parent_slug() {
    global $post;
    if ($post->post_parent == 0 && $post->post_parent) return '';
    $post_data = get_post($post->post_parent);
    return $post_data->post_name;
}

// initiate anywhere
<?php echo the_parent_slug(); ?>