다음 PHP 코드를 사용하여 워드프레스에서 현재 사용자 정의 글 유형(Custom Post Type) 이름을 출력할 수 있습니다.
<?php echo get_post_type( $post ); ?>
또는
<?php echo $post->post_type; ?>
이외에도 다음과 같은 코드도 사용할 수 있습니다.
$post_type = get_post_type( $post->ID ); echo $post_type;
다음 PHP 코드를 사용하여 워드프레스에서 현재 사용자 정의 글 유형(Custom Post Type) 이름을 출력할 수 있습니다.
<?php echo get_post_type( $post ); ?>
또는
<?php echo $post->post_type; ?>
이외에도 다음과 같은 코드도 사용할 수 있습니다.
$post_type = get_post_type( $post->ID ); echo $post_type;
댓글 남기기