플러그인에서 WP 이미지 갤러리 단축 코드의 출력을 사용자 정의하는 방법은 무엇입니까?


17

게시물을 표시하는 플러그인을 만들고 있으며 게시물에 이미지 갤러리를 사용할 때 이미지 갤러리도 표시하려고합니다. 그러나 표시되는 사진 수를 제한해야합니까? 가능합니까?

답변:


36

이 문제를 해결할 수있는 두 가지 방법이 있지만 기존 갤러리 단축 코드 기능과 거의 동일한 기능을 만드는 방법이 있습니다.

당신도 할 수 있습니다 ..

  1. post_gallery수신 데이터 연결 및 조작 (필요한 경우 갤러리 단축 코드 기능을 필터의 기본으로 사용할 수 있음)
  2. 갤러리 단축 코드를 등록 취소하고 수정 된 새 갤러리 단축 코드를 등록하십시오 (필요한 경우 기존 기능을 기본으로 사용할 수 있음)

이 스레드 에서 비슷한 작업 을 수행했으며 다음 예제에서 동일한 접근 방식을 취하기 때문에 참조 만합니다.

갤러리 단축 코드의 필터 예

add_filter( 'post_gallery', 'my_post_gallery', 10, 2 );
function my_post_gallery( $output, $attr) {
    global $post, $wp_locale;

    static $instance = 0;
    $instance++;

    // We're trusting author input, so let's at least make sure it looks like a valid orderby statement
    if ( isset( $attr['orderby'] ) ) {
        $attr['orderby'] = sanitize_sql_orderby( $attr['orderby'] );
        if ( !$attr['orderby'] )
            unset( $attr['orderby'] );
    }

    extract(shortcode_atts(array(
        'order'      => 'ASC',
        'orderby'    => 'menu_order ID',
        'id'         => $post->ID,
        'itemtag'    => 'dl',
        'icontag'    => 'dt',
        'captiontag' => 'dd',
        'columns'    => 3,
        'size'       => 'thumbnail',
        'include'    => '',
        'exclude'    => ''
    ), $attr));

    $id = intval($id);
    if ( 'RAND' == $order )
        $orderby = 'none';

    if ( !empty($include) ) {
        $include = preg_replace( '/[^0-9,]+/', '', $include );
        $_attachments = get_posts( array('include' => $include, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby) );

        $attachments = array();
        foreach ( $_attachments as $key => $val ) {
            $attachments[$val->ID] = $_attachments[$key];
        }
    } elseif ( !empty($exclude) ) {
        $exclude = preg_replace( '/[^0-9,]+/', '', $exclude );
        $attachments = get_children( array('post_parent' => $id, 'exclude' => $exclude, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby) );
    } else {
        $attachments = get_children( array('post_parent' => $id, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby) );
    }

    if ( empty($attachments) )
        return '';

    if ( is_feed() ) {
        $output = "\n";
        foreach ( $attachments as $att_id => $attachment )
            $output .= wp_get_attachment_link($att_id, $size, true) . "\n";
        return $output;
    }

    $itemtag = tag_escape($itemtag);
    $captiontag = tag_escape($captiontag);
    $columns = intval($columns);
    $itemwidth = $columns > 0 ? floor(100/$columns) : 100;
    $float = is_rtl() ? 'right' : 'left';

    $selector = "gallery-{$instance}";

    $output = apply_filters('gallery_style', "
        <style type='text/css'>
            #{$selector} {
                margin: auto;
            }
            #{$selector} .gallery-item {
                float: {$float};
                margin-top: 10px;
                text-align: center;
                width: {$itemwidth}%;           }
            #{$selector} img {
                border: 2px solid #cfcfcf;
            }
            #{$selector} .gallery-caption {
                margin-left: 0;
            }
        </style>
        <!-- see gallery_shortcode() in wp-includes/media.php -->
        <div id='$selector' class='gallery galleryid-{$id}'>");

    $i = 0;
    foreach ( $attachments as $id => $attachment ) {
        $link = isset($attr['link']) && 'file' == $attr['link'] ? wp_get_attachment_link($id, $size, false, false) : wp_get_attachment_link($id, $size, true, false);

        $output .= "<{$itemtag} class='gallery-item'>";
        $output .= "
            <{$icontag} class='gallery-icon'>
                $link
            </{$icontag}>";
        if ( $captiontag && trim($attachment->post_excerpt) ) {
            $output .= "
                <{$captiontag} class='gallery-caption'>
                " . wptexturize($attachment->post_excerpt) . "
                </{$captiontag}>";
        }
        $output .= "</{$itemtag}>";
        if ( $columns > 0 && ++$i % $columns == 0 )
            $output .= '<br style="clear: both" />';
    }

    $output .= "
            <br style='clear: both;' />
        </div>\n";

    return $output;
}

원하는 기능을 적용하도록 해당 기능을 수정하십시오 (단지 기준일뿐입니다.).

wp-includes/media.php갤러리 단축 코드 콜백 함수 내부에서 사용중인 후크를 찾을 수 있습니다 (763 행 참조).

http://core.trac.wordpress.org/browser/tags/3.0.1/wp-includes/media.php#L745

희망이 도움이 .. :)


힌트 주셔서 감사합니다. 나는이 **** 필터를 2 시간 동안 검색했습니다. +1
카이저

WP 4.2.2에서 'orderby'=> 'menu_order ID'가 더 이상 작동하지 않는 것 같습니다.
땅콩

-2

갤러리 당 이미지 수를 지정할 수 있습니다. 이는 포스트 편집기의 미디어 틴 박스에있는 갤러리 탭을 통해 구성 할 수 있습니다. 갤러리를 이미 삽입 한 후에는 비주얼 편집기에서 갤러리를 편집하여 편집 할 수 있다고 생각합니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.