Viewing 2 replies - 1 through 2 (of 2 total)
  • Cache Images should work for all post types, we just need to fix bugs.

    If you’re comfortable editing the plugin code, look around line 288 (in the externimg_backcatalog() function), and you should see a line like:
    $pp = get_posts( array( 'numberposts'=>-1 ) );

    Change it to read like so:
    $pp = get_posts( array( 'post_type' => array('post', 'page'), 'numberposts'=>-1 ) );

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Add Linked Images To Gallery] Doesn't work for pages’ is closed to new replies.