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.

field.php 155B

12345678910
  1. <?php
  2. /**
  3. * A P2P admin metabox is composed of several "fields".
  4. */
  5. interface P2P_Field {
  6. function get_title();
  7. function render( $p2p_id, $item );
  8. }