คุณสมบัติทั้งหมดของ WordPress Post Object คืออะไร


13

( หมายเหตุของผู้ดูแล:ชื่อเดิมคือ "อะไรคือตัวแปรทั้งหมดใน wordpress post object?")

ไม่มีใครรู้ว่าตัวแปรที่เก็บไว้ในวัตถุ WordPress โพสต์?

คำตอบ:


13

โพสต์วัตถุส่วนใหญ่เป็นแถวสอบถามของ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_dumping โพสต์หรือไม่? เพียงแค่สงสัยว่าทำไมฉันถึงมีบรรพบุรุษมาด้วยเช่นกัน ครอบคลุมมากกว่าฉันอีกแล้ว +1
ไม่มีใคร

ใช่แล้วvar_dump()ftw :) สำหรับเรคคอร์ดของฉันคือ xdebug-Enhanced version แต่นั่นมีผลกับงานนำเสนอเท่านั้น ไม่ทราบเกี่ยวกับancestorsฟิลด์ไม่เคยพบจริง ๆ ใช้
Rarst

1
ควรสังเกตว่าส่วนใหญ่แนวปฏิบัติที่ดีที่สุดคือการเข้าถึงคุณสมบัติผ่านฟังก์ชัน API แทนที่จะโต้ตอบโดยตรงกับออบเจกต์ $ post
Ian Dunn

3

หากคุณอ้างถึงสิ่งที่คุณสามารถเข้าถึงได้โดยใช้$post(เรียกคืนโดยใช้var_dump):

  • ID
  • post_author
  • post_date
  • post_date_gmt
  • POST_CONTENT
  • POST_TITLE
  • post_excerpt
  • post_status
  • comment_status
  • ping_status
  • post_password
  • POST_NAME
  • to_ping
  • ส่ง Ping
  • post_modified
  • post_modified_gmt
  • post_content_filtered
  • post_parent
  • GUID
  • menu_order
  • post_type
  • post_mime_type
  • COMMENT_COUNT
  • บรรพบุรุษ
  • กรอง
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.