item-post.php 262 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <?php class P2P_Item_Post extends P2P_Item { function get_title() { return get_the_title( $this->item ); } function get_permalink() { return get_permalink( $this->item ); } function get_editlink() { return get_edit_post_link( $this->item ); } }