Need more example to show like the demo

Support MB Relationships Need more example to show like the demoResolved

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #11053
    justdoit123justdoit123
    Participant

    I want to show like the demo image below, but i have no idea, i read document but still don't know, it does not have in online generator or in Metabox AIO

    demo

    #11059
    Anh TranAnh Tran
    Keymaster

    Hi, can you just try putting this code into your theme's functions.php file?

    add_action( 'mb_relationships_init', function() {
        MB_Relationships_API::register( array(
            'id'   => 'posts_to_pages',
            'from' => 'post',
            'to'   => 'page',
        ) );
    } );

    You'll see meta boxes "Connected From" and "Connects To" for posts and pages. It's the most basic usage.

    Please try it.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.