एक प्लगइन से 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 में ऐसा लगता है कि 'ऑर्डरबी' => 'मेनू_ऑर्डर आईडी' अब काम नहीं करता है?
मूंगफली

-2

आप प्रति गैलरी छवियों की संख्या निर्दिष्ट कर सकते हैं। इसे पोस्ट एडिटर में मीडिया टैब में गैलरी टैब के माध्यम से कॉन्फ़िगर किया जा सकता है। आपके द्वारा गैलरी डालने के बाद, मुझे लगता है कि आप दृश्य संपादक में गैलरी को संपादित करके संपादित कर सकते हैं।

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.