• All,

    I have this echo shortcode, I believe outside the loop and I cannot get the gallery links to work. When I have the code on a page, the links work fine.

    This is the code that I am using. The images come up just fine and they re-size as the browser get small, the main reason why I am using this.

    How can I get each image to point to a link or get the gallery to pull the link that is associated with each gallery item

    Help would be appreciated.

    D

    <?php echo do_shortcode(‘[gallery link="1" columns="4" ids="6622,6623,6625,6626"]
    ‘); ?>

Viewing 3 replies - 1 through 3 (of 3 total)
  • The link attribute is either to image file, or none, else (if left nothing) the image attachment page.

    [gallery link="file"] = To image file

    [gallery link="none"] = not a link to anything

    [gallery] = default is to link to the attachment page of that image.

    Gallery Shortcode
    http://codex.wordpress.org/Gallery_Shortcode

    Source
    http://core.trac.wordpress.org/browser/tags/3.7.1/src/wp-includes/media.php#L811

    Thread Starter dennishjmiller

    (@dennishjmiller)

    Hello Paul,

    I tried this already and did it again, no luck. Here is the code. What else do this think would work?

    D

    <?php
    /*
    Template Name: Layout W/Header Images
    */
    ?>

    <?php get_header(); ?>

    <div class=”homepageimages”>
    <?php echo do_shortcode(‘[gallery link="file" columns="4" ids="6622,6623,6625,6626"]
    ‘); ?>

    </div>
    <?php

    $sidebar = get_post_meta($post->ID,’page-option-sidebar-template’,true);
    $sidebar_class = ”;
    if( $sidebar == “left-sidebar” || $sidebar == “right-sidebar”){
    $sidebar_class = “sidebar-included ” . $sidebar;
    }else if( $sidebar == “both-sidebar” ){
    $sidebar_class = “both-sidebar-included”;
    }

    ?>

    @dennishjmiller Not sure if you got this solved, but I’m sorry I am not able to figure this one out.

    So if anyone spot something, or know what wrong with this, please don’t hesitate to provide the info.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Shortcode Gallery Outside the Loop Links Not Working’ is closed to new replies.