[Theme: ColorWay] Display multiple images on blog page instead of a single one only
-
Hi there,
when using the blog template, the theme is displaying only the last image of any blog entry, instead of using all images.
The code which generates this one-image-only is in the file “inkthemes-functions.php”, and looks like this:
/*-----------------------------------------------------------------------------------*/ /* Function to call first uploaded image in functions file /*-----------------------------------------------------------------------------------*/ function inkthemes_main_image() { global $post, $posts; //This is required to set to Null $id=''; $the_title=''; // Till Here $permalink = get_permalink( $id ); $homeLink = get_template_directory_uri(); $first_img = ''; ob_start(); ob_end_clean(); $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches); if(isset($matches [1] [0])){ $first_img = $matches [1] [0];} if(empty($first_img)){ //Defines a default image } else{ print "<a href='$permalink'><img src='$first_img' width='640px' height='400px' class='postimg wp-post-image' alt='$the_title' /></a>"; } }
I can program a bit in PHP, but am no expert. Here, it just calls for the last image in the blog entry code. Is there any way to call and get the result for all images?
Thanks for any hints!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Theme: ColorWay] Display multiple images on blog page instead of a single one only’ is closed to new replies.