Advertisement
Guest User

Untitled

a guest
Aug 21st, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. function my_connection_types() {
  2.     if ( !function_exists( 'p2p_register_connection_type' ) )
  3.         return;
  4.  
  5.     p2p_register_connection_type( array(
  6.         'name' => 'seminar_zu_termin',
  7.         'from' => 'page',
  8.         'to' => 'tribe_events',
  9.         'cardinality' => 'one-to-many',
  10.         'sortable' => 'from'
  11.     ) );
  12. }
  13. add_action( 'wp_loaded', 'my_connection_types' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement