NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }