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-post.php 262B

1234567891011121314151617
  1. <?php
  2. class P2P_Item_Post extends P2P_Item {
  3. function get_title() {
  4. return get_the_title( $this->item );
  5. }
  6. function get_permalink() {
  7. return get_permalink( $this->item );
  8. }
  9. function get_editlink() {
  10. return get_edit_post_link( $this->item );
  11. }
  12. }