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-order.php 357B

1234567891011121314151617181920212223
  1. <?php
  2. class P2P_Field_Order implements P2P_Field {
  3. protected $sort_key;
  4. function __construct( $sort_key ) {
  5. $this->sort_key = $sort_key;
  6. }
  7. function get_title() {
  8. return '';
  9. }
  10. function render( $p2p_id, $_ ) {
  11. return html( 'input', array(
  12. 'type' => 'hidden',
  13. 'name' => "p2p_order[$this->sort_key][]",
  14. 'value' => $p2p_id
  15. ) );
  16. }
  17. }