• Resolved marciniakk

    (@marciniakk)


    Hi.

    When I create a photo gallery I see one photo with arrows to scroll them.
    Is it possible to change the display of thumbnails so that they are shown as separate thumbnails? and only after clicking did it appear as it is now a large photo with arrows?

    Best regards
    Krzysztof

Viewing 1 replies (of 1 total)
  • Thread Starter marciniakk

    (@marciniakk)

    In template-tags.php

    I put this line
    echo ‘<p><button>Read more</button></p>’;

    in to

    if ( ! function_exists( ‘loose_entry_meta’ ) ) :
    /**
    * Function to handle displaying entry meta section for multiple post formats.
    *
    * @return void
    */
    function loose_entry_meta() {
    if ( ‘post’ == get_post_type() ) :
    ?>
    <div class=”entry-meta”>
    <?php
    if ( ! is_single() && has_post_format( ‘link’ ) ) {
    // Extracting link from the content.
    $subject = get_the_content();
    $subject = apply_filters( ‘the_content’, $subject ); // WPCS: prefix ok.
    $regex = ‘#<a\s+(?:[^>]*?\s+)?href=[\”\’](.*?)[\”\’]#’;
    preg_match( $regex, $subject, $matches );
    if ( ! empty( $matches[1] ) ) {
    $match = $matches[1];
    echo ‘<span class=”loose-post-format loose-link-post-format”>‘ . esc_url( $match ) . ‘</span>’;
    }
    } elseif ( ! is_single() && has_post_format( ‘quote’ ) ) {
    $subject = get_the_content();
    $subject = apply_filters( ‘the_content’, $subject ); // WPCS: prefix ok.
    $regex = ‘/<cite>.*<\/cite>/s’;
    preg_match( $regex, $subject, $matches );
    if ( $matches && $matches[0] ) {
    $match = $matches[0];
    echo ‘<span class=”loose-post-format loose-quote-post-format”>’ . wp_kses_post( $match ) . ‘</span>’;
    }
    } elseif ( has_post_format( ‘image’ ) ) {
    echo ”;
    } else {
    echo ‘<p><button>Read more</button></p>’;
    loose_posted_on();
    }
    ?>
    </div><!– .entry-meta –>
    <?php
    endif;
    }
    endif;

    Best regards
    Krzysztof

Viewing 1 replies (of 1 total)
  • The topic ‘Change the display of thumbnail images in the gallery’ is closed to new replies.