fightthecore
Forum Replies Created
-
Forum: Plugins
In reply to: [Link Library] Broken in 3.9, but quick fix availableLink Library is now fixed.
Forum: Fixing WordPress
In reply to: link library disappearedHere’s the fix:
WordPress removed ( get_option(‘links_recently_updated_time’) ) for WP 3.9.
Here’s the updated PHP code for Link Library:
Old Code:
$linkquery .= “IF (DATE_ADD(l.link_updated, INTERVAL ” . get_option(‘links_recently_updated_time’) . ” MINUTE) >= NOW(), 1,0) as recently_updated “;New Code:
$linkquery .= “IF (DATE_ADD(l.link_updated, INTERVAL 120 MINUTE) >= NOW(), 1,0) as recently_updated “;All fixed.
Forum: Plugins
In reply to: [Link Library] Link Library issues in WP 3.9Will48, what kind of errors are you getting in the error log?
Forum: Plugins
In reply to: [Link Library] Link Library issues in WP 3.9You can edit the file here:
Plugins > Editor > Link Library
===
Editing link-library/link-library.php (active)
===Forum: Plugins
In reply to: [Link Library] No links found.Here’s the fix:
WordPress removed ( get_option(‘links_recently_updated_time’) ) for WP 3.9.
Here’s the updated PHP code for Link Library:
Old Code:
$linkquery .= “IF (DATE_ADD(l.link_updated, INTERVAL ” . get_option(‘links_recently_updated_time’) . ” MINUTE) >= NOW(), 1,0) as recently_updated “;New Code:
$linkquery .= “IF (DATE_ADD(l.link_updated, INTERVAL 120 MINUTE) >= NOW(), 1,0) as recently_updated “;All fixed.
Forum: Plugins
In reply to: [Link Library] Link Library issues in WP 3.9Here’s the fix:
WordPress removed ( get_option(‘links_recently_updated_time’) ) for WP 3.9.
Here’s the updated PHP code for Link Library:
Old Code:
$linkquery .= “IF (DATE_ADD(l.link_updated, INTERVAL ” . get_option(‘links_recently_updated_time’) . ” MINUTE) >= NOW(), 1,0) as recently_updated “;New Code:
$linkquery .= “IF (DATE_ADD(l.link_updated, INTERVAL 120 MINUTE) >= NOW(), 1,0) as recently_updated “;All fixed.