السلام عليكم ورحمة الله وبركاته
ارجوا مساعدتي في تغيير هذا الكود الخاص بالارشيف ...
طبعا الحين كلنا نعرف ان كل التدوينات للتصنيفات الفرعية تظهر في الارشيف الرئيسي
ولكن انا اريد اظهار التصنيفات الفرعية الموجودة تحت الارشيف الرئيسي بدل التدوينات
وهذه هو الكود الخاص بالارشيف للقالب arras ويكون بنفس طريقة العرض المبرمج عليها
،،، ارجوا مساعدتي في ذلك
\[code\]
<?php get\_header(); ?>
<div id="content" class="section">
<?php arras\_above\_content() ?>
<?php is\_tag(); if ( have\_posts() ) : ?>
<?php $post = $posts\[0\]; // Hack. Set $post so that the\_date() works. ?>
<?php if ( is\_category() ) : ?>
<h1 class="home-title"><?php printf( \_\_('%s Archive', 'arras'), single\_cat\_title() ) ?></h1>
<?php elseif ( is\_tag() ) : ?>
<h1 class="home-title"><?php printf( \_\_('%s Archive', 'arras'), single\_tag\_title() ) ?></h1>
<?php elseif ( is\_day() ) : ?>
<h1 class="home-title"><?php printf( \_\_('Archive for %s', 'arras'), get\_the\_time( \_\_('F jS, Y', 'arras') ) ) ?></h1>
<?php elseif ( is\_month() ) : ?>
<h1 class="home-title"><?php printf( \_\_('Archive for %s', 'arras'), get\_the\_time( \_\_('F, Y', 'arras') ) ) ?></h1>
<?php elseif ( is\_year() ) : ?>
<h1 class="home-title"><?php printf( \_\_('Archive for %s', 'arras'), get\_the\_time( \_\_('Y', 'arras') ) ) ?></h1>
<?php elseif ( is\_author() ) : ?>
<h1 class="home-title"><?php \_e('Author Archive', 'arras') ?></h1>
<?php else : ?>
<h1 class="home-title"><?php \_e('Archives', 'arras') ?></h1>
<?php endif; ?>
<div id="archive-posts">
<?php arras\_render\_posts(null, arras\_get\_option('archive\_display'), 'archive') ?>
<?php if(function\_exists('wp\_pagenavi')) wp\_pagenavi(); else { ?>
<div class="navigation clearfix">
<div class="floatleft"><?php next\_posts\_link( \_\_('« Older Entries', 'arras') ) ?></div>
<div class="floatright"><?php previous\_posts\_link( \_\_('Newer Entries »', 'arras') ) ?></div>
</div>
<?php } ?>
</div><!-- #archive-posts -->
<?php else : ?>
<?php arras\_post\_notfound() ?>
<?php endif; ?>
<?php arras\_below\_content() ?>
</div><!-- #content -->
<?php get\_sidebar(); ?>
<?php get\_footer(); ?>
\[/code\]