functions.php
1 2 3 4 5 6 7 8 9 10 11 12 |
<h3>functions.php</h3> function page_is_ancestor_of($slug){ global $post; $page = get_page_by_path($slug); $result = false; if(isset($page)){ foreach ($post->ancestors as $ancestor) { if($ancestor == $page->ID){ $result = true; } } } return $result; } |
コメント