اذهب إلى المحتوى
  • 0

كيف استطيع عمل ( A-Z Category list )

عبدالكريم ابكر

السؤال

مرحباً  

ارجوا مساعدتي في تصميم احرف تسلسليه في قائمة الفئات على صفحة الارشيف , مثال : الفئة (category) = المنشور (posts) = استدعاء المنشور من خلال الاحرف التسلسلية

(  in category = post call by letters start with  A-Z  list)

هل هناك طريقة لعمل ذلك 

شكرا

رابط هذا التعليق
شارك على الشبكات الإجتماعية

Recommended Posts

  • 0

السلام عليكم 

شكرا لك اخي باستجابتك لي .

انا استخدم لغة ال ( php ) اخي الغالي .

عند بحث لاضافة هذي الخاصية وجت هذا الكودة , هو جيد يحقق مرادي ولكن يحتاج بعض التعديل لانه لا يستجيب عند الضغط في الاحرف الظاهر .

فاتمنى ان يعد ويستجيب.

 

<?php get_header(); ?>

<div id="content-small">
<div class="list-terms">


<div class="alphanav">
<a href="<?php bloginfo("url"); ?>/genre/?character=A">A</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=B">B</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=C">C</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=D">D</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=E">E</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=F">F</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=G">G</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=H">H</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=I">I</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=J">J</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=K">K</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=L">L</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=M">M</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=N">N</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=O">O</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=P">P</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=Q">Q</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=R">R</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=S">S</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=T">T</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=U">U</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=V">V</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=W">W</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=X">X</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=Y">Y</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=Z">Z</a>
<a href="<?php bloginfo('url'); ?>/genre/?character=#">#</a>
  </div>

<?php $args = array('name__like' => "a", 'order' => 'ASC');
    $terms = get_terms('post_tag', $args);
    if ( !empty( $terms ) && !is_wp_error( $terms ) ) {
        $count = count($terms);
        $i=0;
        $term_list = '<ul class="my_term-archive">';
        echo '<h2 class="term-letter">A</h2>';
        foreach ($terms as $term) {
            $i++;
            $term_list .= '<li><a href="' . get_term_link( $term ) . '" title="' . sprintf(__('View all post filed under %s', 'my_localization_domain'), $term->name) . '">' . $term->name . '</a></li>';
            if ($count != $i) {
                $term_list .= '';
            }
            else {
                $term_list .= '</ul>';
            }
        }
        echo $term_list;
    }
    ?>
     </div>
</div>

رابط هذا التعليق
شارك على الشبكات الإجتماعية

انضم إلى النقاش

يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.

زائر
أجب على هذا السؤال...

×   لقد أضفت محتوى بخط أو تنسيق مختلف.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   جرى استعادة المحتوى السابق..   امسح المحرر

×   You cannot paste images directly. Upload or insert images from URL.

  • إعلانات

  • تابعنا على



×
×
  • أضف...