jarv Posted October 15, 2010 Share Posted October 15, 2010 Hi, I need to unlink my images in my Media Library (wordpress) on my blog: http://www.jbiddulph.com/blog/index.php/featured/ Please help?! I think it is in this piece of code: foreach ( $attachments as $id => $attachment ) { $link = isset($attr['link']) && 'file' == $attr['link'] ? wp_get_attachment_link($id, $size, false, false) : wp_get_attachment_link($id, $size, true, false); $output .= "$link"; if ( $captiontag && trim($attachment->post_excerpt) ) { $output .= " " . wptexturize($attachment->post_excerpt) . " "; } if ( $columns > 0 && ++$i % $columns == 0 ) $output .= ''; } Link to comment https://forums.phpfreaks.com/topic/215957-need-to-unlink-media-library-wordpress/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.