scribu / wp-posts-to-posts

Efficient many-to-many connections between posts, pages, custom post types, users.
http://wordpress.org/plugins/posts-to-posts/
969 stars 260 forks source link

Unregistered connection type #557

Open raffaelecolleo opened 6 years ago

raffaelecolleo commented 6 years ago

Hi all, I am getting this error Warning: Unregistered connection type ''. in /home/demolms/public_html/wp-content/plugins/posts-to-posts/vendor/scribu/lib-posts-to-posts/list-renderer.php on line 8

This is my connection registration function p2p_courses_to_vocabulary(){ p2p_register_connection_type( array( 'title' => 'Vocabulary', 'name' => 'vocabulary', 'from' => 'courses', 'to' => 'post', 'reciprocal' => true, 'admin_box' => array( 'show' => 'any', 'context' => 'side' ) ) ); } add_action( 'p2p_init', 'p2p_courses_to_vocabulary' );

Any Ideas???