Any way this plugin could be adjusted to work for pages as well as posts? :)
http://wordpress.org/extend/plugins/add-linked-images-to-gallery-v01/
Any way this plugin could be adjusted to work for pages as well as posts? :)
http://wordpress.org/extend/plugins/add-linked-images-to-gallery-v01/
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 ) );
This topic has been closed to new replies.