item-attachment.php 259 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php class P2P_Item_Attachment extends P2P_Item_Post { function get_title() { if ( wp_attachment_is_image( $this->item->ID ) ) { return wp_get_attachment_image( $this->item->ID, 'thumbnail', false ); } return get_the_title( $this->item ); } }