Viewing 3 replies - 1 through 3 (of 3 total)
  • 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.

    Plugin Author Yannick Lefebvre

    (@jackdewey)

    The latest version includes this fix.

    Thread Starter AleksCee

    (@alekscee)

    works! Thank you!

    Happy Easter, Alex

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘No links found.’ is closed to new replies.