jrobinsonc
6/1/2015 - 2:58 PM

Wordpress helper: is_parent

Wordpress helper: is_parent

<?php

/**
 * is_parent
 * 
 * @author JoseRobinson.com
 * @link https://gist.github.com/jrobinsonc/e6098d90453d58f31793
 * @param int $pid
 * @return bool
 */
function is_parent($pid)
{
    global $post;

    return (is_page() && ($post->post_parent == $pid || is_page($pid))); 
}