• Hello!

    I needed to change the authors of all existing links from link library. Permissions only allow to change the links created by oneself. So if anyone else need to do this, just add the following snippet in functions.php in your theme’s directory:

    function allowAuthorEditing()
    {
      add_post_type_support( 'link_library_links', 'author' );
    }
    
    add_action('init','allowAuthorEditing');

    Maybe this helps someone else. 🙂

    Regards,
    Heiko

    Edit: Thanks for sharing and publishing your great plugin!

Viewing 1 replies (of 1 total)
  • Plugin Author Yannick Lefebvre

    (@jackdewey)

    Thanks for sharing your finding with the community. If others feel like this would be useful to have for a wider audience, I can look to add an option to add this parameter in the plugin.

    Glad you enjoy Link Library! Please consider donating to support its development.

Viewing 1 replies (of 1 total)
  • The topic ‘Bulk change author of Links’ is closed to new replies.