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-any.php 218B

12345678910111213141516171819
  1. <?php
  2. class P2P_Item_Any extends P2P_Item {
  3. function __construct() {}
  4. function get_permalink() {}
  5. function get_title() {}
  6. function get_object() {
  7. return 'any';
  8. }
  9. function get_id() {
  10. return false;
  11. }
  12. }