워드프레스에서 부모페이지 혹은 부모포스트 제목을 가져오는 숏코드

[get_parent_post_title] 를 사용할 것

워드프레스 > 관리자 로그인 > 관리자 대시보드 > 외모 > 테마 파일 편집기 > 테마 기능 funtions.php에 아래 코드 삽입할 것

function get_parent_post_title_shortcode() {
    $parent_post_id = get_the_ID();
    $parent_post = get_post($parent_post_id);

    if ($parent_post->post_parent) {
        $parent_post_title = get_the_title($parent_post->post_parent);
        return $parent_post_title;
    } else {
        return '';
    }
}

add_shortcode('get_parent_post_title', 'get_parent_post_title_shortcode');

댓글 달기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

위로 스크롤