Gallery store display

Bring Your Business to LifeSupportImage StoreGallery store display

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #110762
    Xpark Media
    Keymaster

    @daviddddd,

    You could create the gallery and change the path to make this your store page.

    If you want display the most recent gallery, you can create a page template and use the following code:

    $gallery = wp_query(array('post_type'=>'ims_gallery', 'posts_per_page'=>1));
    if ( $gallery->have_posts() ) {
    while ( $gallery->have_posts() ) { $gallery->the_post();
    the_content( );
    }
    }
    #242163
    pategan
    Participant

    Hi daviddddd,

    I am currently attempting to do the exact same with http://www.christymcnamara.com/wp but the above code hasn’t worked for me with [insert_php] plugin and on the page. Do I need to insert this code somewhere else in order for it to work?

    That other site looks great btw 🙂

    Patrick

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.