답변:
포스트 오브젝트는 대부분 wp_posts
추가 로 데이터베이스 테이블 의 쿼리 된 행입니다 . 하나의 내용을 쉽게 덤프하고 볼 수 있습니다.
object(stdClass)
public 'ID' => int
public 'post_author' => string
public 'post_date' => string
public 'post_date_gmt' => string
public 'post_content' => string
public 'post_title' => string
public 'post_excerpt' => string
public 'post_status' => string
public 'comment_status' => string
public 'ping_status' => string
public 'post_password' => string
public 'post_name' => string
public 'to_ping' => string
public 'pinged' => string
public 'post_modified' => string
public 'post_modified_gmt' => string
public 'post_content_filtered' => string
public 'post_parent' => int
public 'guid' => string
public 'menu_order' => int
public 'post_type' => string
public 'post_mime_type' => string
public 'comment_count' => string
public 'filter' => string
var_dump()
ftw. :) 레코드 광산은 xdebug-enhanced 버전이지만 프레젠테이션에만 영향을 미칩니다. ancestors
필드에 대해 몰라 실제로 사용 된 적이 없습니다.
를 사용하여 액세스 할 수있는 항목을 참조하는 경우 (를 사용하여 $post
검색 var_dump
) :