<?php
function my_connection_types() {
// Make sure the Posts 2 Posts plugin is active.
if ( !function_exists( 'p2p_register_connection_type' ) )
return;
p2p_register_connection_type( array(
'id' => 'page_un',
'from' => 'webcomic',
'to' => 'webcomic',
'sortable' => 'any'
)
);
}
add_action( 'init', 'my_connection_types', 100 );
?>
I've put this. If I try
<?php
function my_connection_types() {
// Make sure the Posts 2 Posts plugin is active.
if ( !function_exists( 'p2p_register_connection_type' ) )
return;
p2p_register_connection_type( array(
'id' => 'page_un',
'from' => 'webcomic',
'to' => 'webcomic',
'sortable' => 'any',
'title' => array( 'from' => 'Managed by', 'to' => 'Manages'
)
);
}
add_action( 'init', 'my_connection_types', 100 );
?>
I've got the error.