Bulk change author of Links
-
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,
HeikoEdit: Thanks for sharing and publishing your great plugin!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Bulk change author of Links’ is closed to new replies.