NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

dropdown-factory.php 446B

12345678910111213141516171819
  1. <?php
  2. class P2P_Dropdown_Factory extends P2P_Factory {
  3. protected $key = 'admin_dropdown';
  4. function __construct() {
  5. parent::__construct();
  6. add_action( 'load-edit.php', array( $this, 'add_items' ) );
  7. add_action( 'load-users.php', array( $this, 'add_items' ) );
  8. }
  9. function add_item( $directed, $object_type, $post_type, $title ) {
  10. $class = 'P2P_Dropdown_' . ucfirst( $object_type );
  11. $item = new $class( $directed, $title );
  12. }
  13. }