NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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