NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

item-attachment.php 252B

123456789101112
  1. <?php
  2. class P2P_Item_Attachment extends P2P_Item_Post {
  3. function get_title() {
  4. if( wp_attachment_is_image( $this->item->ID ) )
  5. return wp_get_attachment_image( $this->item->ID, 'thumbnail', false );
  6. return get_the_title( $this->item );
  7. }
  8. }