ফাংশন.এফপিতে পিএইচপি ব্যবহার করে কীভাবে ম্যানুয়ালি ওয়ার্ডপ্রেস গ্যালারী কোড ঠিক করবেন?


16

এটি বহুবার কথা হয়েছে যে ওয়ার্ডপ্রেস অন্তর্নির্মিত গ্যালারী ফাংশনের জন্য কিছু সত্যই খারাপ কোড আউটপুট দেয়।

গ্যালারী আউটপুট (/wp-includes/media.php এ) এর জন্য দায়ী এই কোড কোড:

function gallery_shortcode($attr) {
    global $post;

    static $instance = 0;
    $instance++;

    // Allow plugins/themes to override the default gallery template.
    $output = apply_filters('post_gallery', '', $attr);
    if ( $output != '' )
        return $output;

    // 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}";

    $gallery_style = $gallery_div = '';
    if ( apply_filters( 'use_default_gallery_style', true ) )
        $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 -->";
    $size_class = sanitize_html_class( $size );
    $gallery_div = "<div id='$selector' class='gallery galleryid-{$id} gallery-columns-{$columns} gallery-size-{$size_class}'>";
    $output = apply_filters( 'gallery_style', $gallery_style . "\n\t\t" . $gallery_div );

    $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='wp-caption-text 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;
}

আমি কি ঠিক করতে চাই?

[1] উপরের কোডটি সরাসরি পোস্টে CSS স্টাইল আউটপুট করে। আমি এটিকে থামাতে চাই, যেহেতু আমি আমার স্টাইল সিএসএস স্টাইলশিটে সহজেই একই সিএসএস কোড যুক্ত করতে পারি।

[2] আমি তাদের থাম্বনেইলের নীচে চিত্রগুলির ক্যাপশন আউটপুট থেকে কোডটি অক্ষম করতে চাই। আমি চাইছি ক্যাপশনগুলি কেবল সংযুক্তি পৃষ্ঠাগুলিতে প্রদর্শিত হবে, পোস্টে নয়।

[3] পূর্বোক্ত কোডটি <br style="clear: both;">গ্যালারী কোডের পরে দুটি উপাদান যুক্ত করে। আমি এটি অক্ষম করতে চাই, যেহেতু আমি এর জন্য CSS কোডে "মার্জিন" ব্যবহার করতে পারি।

functions.phpমূল ফাইলগুলি সম্পাদনা করার প্রস্তাব দেওয়া হয়নি বলে আমি ফাইলটিতে কিছু পিএইচপি কোড ব্যবহার করে উপরের "তিনটি" জিনিসগুলি সম্পাদন করতে চাই ।

আশা করি কেউ কিছু সাহায্য করতে পারেন। (আমি কীভাবে কোড করব জানি না, সুতরাং দয়া করে যথাসম্ভব পরিষ্কার করুন)) ধন্যবাদ!

রিলেভেন্ট: দেখার জন্য উত্স ফাইলটি হ'ল /wp-includes/media.php(এখানে ট্রাঙ্ক সংস্করণ - gallery_shortcodeফাংশনের সন্ধান করুন )।


1
এই পোস্ট করার জন্য ধন্যবাদ। Wpautop এ "pee" এবং "twinkle" এর পাশাপাশি ওয়ার্ডপ্রেস কোডটি কতটা অগোছালো তা তার দুর্দান্ত উদাহরণ।
ড্যান ড্যাসকলেসকু

উত্তর:


18

যেমন শর্টকোড অপসারণ এবং পুনরায় যুক্ত করার আগে এটি উল্লেখ করা হয়েছিল এটি অন্য প্লাগইনগুলি পরিবর্তনকারী গ্যালারীগুলির সাথে সামঞ্জস্যপূর্ণ নয় সুতরাং পরিবর্তে আপনি ফাংশন post_galleryথেকে ফিল্টার হুক এবং একই কোডটি ব্যবহার করেন gallery_shortcodeতবে উদাহরণস্বরূপ আপনার নিজের পরিবর্তন সহ আমি মন্তব্য করেছি the যে অংশগুলি আপনি চান না:

function fix_my_gallery_wpse43558($output, $attr) {
    global $post;

    static $instance = 0;
    $instance++;


    /**
     *  will remove this since we don't want an endless loop going on here
     */
    // Allow plugins/themes to override the default gallery template.
    //$output = apply_filters('post_gallery', '', $attr);

    // 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}";

    $gallery_style = $gallery_div = '';
    if ( apply_filters( 'use_default_gallery_style', true ) )
        /**
         * this is the css you want to remove
         *  #1 in question
         */
        /*
        $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 -->";
        */
    $size_class = sanitize_html_class( $size );
    $gallery_div = "<div id='$selector' class='gallery galleryid-{$id} gallery-columns-{$columns} gallery-size-{$size_class}'>";
    $output = apply_filters( 'gallery_style', $gallery_style . "\n\t\t" . $gallery_div );

    $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}>";
        /*
         * This is the caption part so i'll comment that out
         * #2 in question
         */
        /*
        if ( $captiontag && trim($attachment->post_excerpt) ) {
            $output .= "
                <{$captiontag} class='wp-caption-text gallery-caption'>
                " . wptexturize($attachment->post_excerpt) . "
                </{$captiontag}>";
        }*/
        $output .= "</{$itemtag}>";
        if ( $columns > 0 && ++$i % $columns == 0 )
            $output .= '<br style="clear: both" />';
    }

    /**
     * this is the extra br you want to remove so we change it to jus closing div tag
     * #3 in question
     */
    /*$output .= "
            <br style='clear: both;' />
        </div>\n";
     */

    $output .= "</div>\n";
    return $output;
}
add_filter("post_gallery", "fix_my_gallery_wpse43558",10,2);

আসলে, বিদ্যমান মন্তব্যে, EDIT এর অধীনে দীর্ঘ কোডটি দেখুন । এটি একই কাজ করে :)
এর_ম

আমি কি বলতে চাইছি না? কোথায়?
বাইনারনেট

প্রথম কোড ব্লক যা দিয়ে শুরু হয়function my_own_gallery($output, $attr) { ...
এর_মে

আপনার পোস্ট করা কোডটিতে আপনি যে সমস্ত সমস্যার জন্য জিজ্ঞাসা করেছেন তার সবকটিতেই (1,2,3) মন্তব্য করা এবং প্রতিস্থাপন করা হয়নি।
বেন্টারনেট

8

দেখা badlearner এর নিচে সম্পাদন করা

আপনি ডিফল্ট শর্টকোডটি সরিয়ে আপনার নিজের তৈরি করতে পারেন। পছন্দ করুন (আপনার ফাংশন.এফপি এ):

remove_shortcode( 'gallery' );
function my_own_gallary() {
    // Gallery code
}
add_shortcode( 'gallery' , 'my_own_gallary' );

শর্টকোড পরিবর্তন করার সবচেয়ে সহজ উপায় হ'ল এটি আপনার ফাংশনগুলিতে পেস্ট করুন ph my_own_gallary সম্পাদনা শুরু করুন।


সম্পাদনা

মন্তব্যে সোনালী অ্যাপলগুলি যেমন উল্লেখ করেছে: গ্যালারী শর্টকোডের জন্য একটি ফিল্টার রয়েছে, তাই প্রথমে শর্টকোড অপসারণ করার প্রয়োজন নেই।

উদাহরণস্বরূপ আপনি আপনার ফাংশন.এফপি ব্যবহার করতে পারেন (আউটপুটটি ডিফল্ট গ্যালারী শর্টকোড হিসাবে হয়, তাই আপনি এটি পরিবর্তন করতে পারেন)।

function my_own_gallery($output, $attr) {
    global $post;

    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}";

    $gallery_style = $gallery_div = '';
    if ( apply_filters( 'use_default_gallery_style', true ) )
        $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 -->";
    $size_class = sanitize_html_class( $size );
    $gallery_div = "<div id='$selector' class='gallery galleryid-{$id} gallery-columns-{$columns} gallery-size-{$size_class}'>";
    $output = apply_filters( 'gallery_style', $gallery_style . "\n\t\t" . $gallery_div );

    $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='wp-caption-text 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;
}
add_filter("post_gallery", "my_own_gallery",10,2);

ব্যাখ্যা: ওয়ার্ডপ্রেস সংজ্ঞায়িত শর্টকোডে আপনি দেখতে পাবেন:

$output = apply_filters('post_gallery', '', $attr);
    if ( $output != '' )
        return $output;

এর অর্থ হ'ল যদি কোনও ফিল্টার প্রয়োগ করা হয় এবং কোনও কিছু ফেরত দেয় তবে তা ব্যবহৃত হবে (প্রত্যাবর্তিত), অন্যথায় ফাংশন অব্যাহত থাকে (ডিফল্ট শর্টকোড)।

একটি ফিল্টার যুক্ত করতে আপনি add_filter ফাংশনটি ব্যবহার করেন । প্রথম যুক্তি হ'ল ফিল্টারটির ট্যাগ (এই ক্ষেত্রে 'পোস্ট_গ্যালারি'), দ্বিতীয়টি যুক্ত করার জন্য ফাংশন (আপনার কাস্টম গ্যালারী আউটপুট ফিরিয়ে দেবে এমন ফাংশন)।

সুতরাং এটি শর্টকোডের জন্য "পরীক্ষা" আউটপুট দেবে [গ্যালারী]:

function my_own_gallery($output, $attr) {
    return 'test';
}
add_filter("post_gallery", "my_own_gallery",10,2);

সম্পাদনা নীচে আমার উদাহরণে আপনি নিজের সম্পাদনাযোগ্য কোডের সাথে ডিফল্ট শর্টকোড তৈরি করতে add_filter দেখতে পাবেন। আপনি এটি সম্পাদনা করতে পারেন, বা আপনার দয়া করে গ্রাউন্ড থেকে শুরু করতে পারেন।


( অটো দ্বারা সম্পাদনা করুন: উপরেরটি এখন অটো দ্বারা ঠিক করা হয়েছে @ @ রবভিরমির ফিল্টারটিতে প্রথম প্যারামিটারটি অনুপস্থিত ছিল এবং অ্যাড_ফিল্টারটি সঠিকভাবে করেন নি The পোস্ট_গ্যালারি ফিল্টারটি এটি করার সঠিক উপায় the এটি যুক্ত করা ( নীচে ব্যাডলেনার দ্বারা চেষ্টা করা হিসাবে ) এটি যুক্তিযুক্ত নয় কারণ এটি অন্যান্য প্লাগইনগুলিও গ্যালারী সংশোধন করার সাথে বেমানান)


ব্যাডলেনার দ্বারা যুক্ত / সম্পাদিত :

@RobVermeer দ্বারা সরবরাহিত ফাংশন.এফপি ব্যবহার করে গ্যালারী কোড (/wp-includes/media.php) এ সংশোধন করার ফিল্টার পদ্ধতিটি সঠিকভাবে কাজ করছে বলে মনে হচ্ছে না (এই উত্তরটির মন্তব্য দেখুন)।

তবে @ রবভিমিরের প্রথম উত্তর (যেমন, প্রথম সম্পাদনা করার আগে), যা গ্যালারী শর্টকোডটি নিবন্ধভুক্ত করে এবং একটি নতুন গ্যালারী শর্টকোড নিবন্ধিত করে, কাজ করে। এবং এখানে কোডটি রয়েছে এবং দয়া করে আরও ভাল উপায় থাকলে উত্তরটি সম্পাদনা করতে বা যুক্ত করতে নির্দ্বিধায় অনুভব করুন

আপনার থিমের ফাংশন.এফপি ফাইলটিতে নিম্নলিখিত কোডটি যুক্ত করা দরকার:

<?php
remove_shortcode( 'gallery' );
add_shortcode( 'gallery' , 'my_own_gallary' );
function my_own_gallary($attr) {
    global $post;

    static $instance = 0;
    $instance++;

    // Allow plugins/themes to override the default gallery template.
    $output = apply_filters('post_gallery', '', $attr);
    if ( $output != '' )
        return $output;

    // 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}";

    $gallery_style = $gallery_div = '';
    if ( apply_filters( 'use_default_gallery_style', true ) )
        $gallery_style = "
        <style type='text/css'>
            #{$selector} .gallery-item {
                width: {$itemwidth}%;
            }
        </style>";
    $size_class = sanitize_html_class( $size );
    $gallery_div = "<div id='$selector' class='gallery galleryid-{$id} gallery-columns-{$columns} gallery-size-{$size_class}'>";
    $output = apply_filters( 'gallery_style', $gallery_style . "\n\t\t" . $gallery_div );

    $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 .= "";
        }
        $output .= "</{$itemtag}>";
        if ( $columns > 0 && ++$i % $columns == 0 )
            $output .= '';
    }

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

    return $output;
}
?>

আর গ্যালারীটির নতুন শর্টকোডটি কী হতে চলেছে? [gallery]নিজেই নাকি অন্য কিছু?
এর_ম

এটা কি হতে চলেছে [my_own_gallery]??
এর_ম

[gallery]প্রকৃতপক্ষে. আপনি যদি এটি আপনার ফাংশন পেস্টে অনুলিপি করেন। php আপনি দেখতে পাবেন ঠিক একই পোষ্টে আপনার আউটপুট। আপনি যদি কোডটি সম্পাদনা করেন তবে আপনি এটিকে নিজের তৈরি করতে পারেন।
রব ভার্মীর

6
আপনার আসলে পুরো শর্টকোডটি সরিয়ে পুনরায় পড়ার দরকার নেই। আপনি যদি ওয়ার্ডপ্রেসের গ্যালারী ফাংশনের শীর্ষের সন্ধান করেন তবে 'পোস্ট_গ্যালারি' নামে একটি ফিল্টার রয়েছে। যদি সেই ফিল্টারটি কোনও কিছু ফেরত দেয়, ওয়ার্ডপ্রেস এটিকে তার নিজস্ব আউটপুট না দিয়ে গ্যালারী আউটপুট হিসাবে ব্যবহার করবে। সুতরাং কেবলমাত্র 'পোস্ট_গ্যালারি' এ ফিল্টার হিসাবে আপনার মার্কআপ যুক্ত করুন।
সুবর্ণপ্লেস

1
আমার আপডেট করা উত্তরে আরও তথ্য বিট করুন, আশা করি এটি সাহায্য করবে।
রব ভার্মীর

1

ঠিক আছে তবে ওয়ার্ডপ্রেসের নতুন সংস্করণে এটি এখনও 3.8 হিসাবে ঠিক আছে যা আমি উপরে একই কোডটি ব্যবহার করেছি তবে লাইন দু'টি যুক্ত করেছি

remove_shortcode( "gallery" );
add_shortcode( "gallery" , "my_own_gallary" );
function my_own_gallary( $attr ) {
global $post;
static $instance = 0;
$instance++;
$output = apply_filters('post_gallery', '', $attr);
if ( $output != '' ) {
    return $output;
}
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;
$gallery_style = $gallery_div = '';
if ( apply_filters( 'use_default_gallery_style', true ) )
    $gallery_style = "
    <style type='text/css'>
        #".$selector." .gallery-item {
            width: ".$itemwidth."%;
        }
    </style>";
$size_class = sanitize_html_class( $size );
$gallery_div = "<div id='$selector' class='gallery galleryid-".$id." gallery-columns-".$columns." gallery-size-".$size_class."'>";
$output = apply_filters( 'gallery_style', $gallery_style . "\n\t\t" . $gallery_div );
$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.">";
/* added the <dd> here to fix validation error */
    if ( $captiontag && trim($attachment->post_excerpt) ) {
        $output .= "
            <".$captiontag." class='wp-caption-text gallery-caption'>
            " . wptexturize($attachment->post_excerpt) . "
            </".$captiontag.">";
    } else {
        $output .= "
            <".$captiontag." class='wp-caption-text gallery-caption' style='display:none;'></".$captiontag.">";
    }
    $output .= "</".$itemtag.">";
    if ( $columns > 0 && ++$i % $columns == 0 )
        $output .= '';
}

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

return $output;
}

-4

add_filter( 'use_default_gallery_style', '__return_false' );


4
ওয়ার্ডপ্রেস বিকাশের মানের মানগুলির সাথে সম্মতি জানাতে দয়া করে আপনার উত্তরগুলিতে একটি যথাযথ ব্যাখ্যা যুক্ত করুন - শুরুর জন্য কীভাবে উত্তর দেওয়া যায় তা পড়ুন
নিকোলাই
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.