You can make it work with last version of wordpress (5.6.2)
-
I think this plugin is really usefull. But when I tried to import the bookmarks, it was returning an empty array from the netscape bookmark parser.
If you want make it work, change line 85 from this
$lines = explode("\n", $this->sanitizeString($bookmarkString));
to this
//$lines = explode("\n", $this->sanitizeString($bookmarkString));
$lines = preg_split('/\r\n|\r|\n/', $bookmarkString);
on vendor/netscape-bookmark-parser/NetscapeBookmarkParser.php
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘You can make it work with last version of wordpress (5.6.2)’ is closed to new replies.