NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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