Viewing 2 replies - 1 through 2 (of 2 total)
  • Try changing:

    $args = array (
    	'post_type' => 'press',
    	'orderby' => 'date',
    	'order' => 'DESC'
    );

    to:

    $args = array (
    	'post_type' => 'press',
    	'orderby' => 'date',
    	'posts_per_page' => 25,
    	'order' => 'DESC'
    );
    Thread Starter billykirk

    (@billykirk)

    Thanks! That worked! I had another separate issue that I don’t know if you can help with… When you click on the publication the image drops down below where the thumbnails were and the thumbnails disappear. I would like either/or to happen but not both. (Either thumbnails disappear and the enlarged image aligns in the top or the enlarged image stays down there but the thumbnails don’t disappear)
    Any suggestions?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Adding additional images with php’ is closed to new replies.