إخواني الكرام أستسمحكم عذرا بهذا الطلب المستعجل
ونرجوا منكم التكرم بتعديل ملف الأرشيف للقالب
ملف الأرشيف بعض المقالات بطريقة عادية
أريد أن أجعل العرض مختلف بحيث يعرض الصورة البارزة للمقالة وتحتها عنوان المقالة ويكون في السطر الواحد مقالاتان
اليكم ملف الأرشيف
\[code\]<?php
get\_header();
?>
<div class="widget widget-blog widget-archive">
<div class="archive-title">
<h3>
<?php
if ( is\_category() ) :
printf( \_\_( 'تصنيف: %s', 'presto' ), '<span>' . single\_cat\_title( '', false ) . '</span>' );
elseif ( is\_tag() ) :
printf( \_\_( 'كلمة دلاليلة: %s', 'presto' ), '<span>' . single\_tag\_title( '', false ) . '</span>' );
elseif ( is\_author() ) :
the\_post();
printf( \_\_( 'الكاتب: %s', 'presto' ), '<span>'. get\_the\_author() . '</span>' );
rewind\_posts();
elseif ( is\_day() ) :
printf( \_\_( 'يوميا: %s', 'presto' ), '<span>' . get\_the\_date() . '</span>' );
elseif ( is\_month() ) :
printf( \_\_( 'شهريا: %s', 'presto' ), '<span>' . get\_the\_date( 'F Y' ) . '</span>' );
elseif ( is\_year() ) :
printf( \_\_( 'سنويا: %s', 'presto' ), '<span>' . get\_the\_date( 'Y' ) . '</span>' );
else :
\_e( 'الارشيف', 'presto' );
endif;
?>
</h3>
<div class="taxonomy-description">
<?php
if ( is\_category() ) :
// show an optional category description
$category\_description = category\_description();
if ( ! empty( $category\_description ) ) :
echo apply\_filters( 'category\_archive\_meta', '<div class="taxonomy-description">' . $category\_description . '</div>' );
endif;
elseif ( is\_tag() ) :
// show an optional tag description
$tag\_description = tag\_description();
if ( ! empty( $tag\_description ) ) :
echo apply\_filters( 'tag\_archive\_meta', '<div class="taxonomy-description">' . $tag\_description . '</div>' );
endif;
elseif ( is\_author() ):
the\_post();
echo '<div class="cf">';
echo '<div class="fl">'.get\_avatar( get\_the\_author\_meta('ID'), 80 ).'</div>';
echo '<div class="author-description">'. the\_author\_meta("description").'</div>';
echo '</div>';
rewind\_posts();
endif;
?>
</div>
</div>
<?php
$layout = get\_theme\_options\_data("presto\_archive\_layout");
if( have\_posts() ){
switch($layout){
case "list":
echo '<div class="blog-list"><div class="row"><div class="twelve columns">';
while(have\_posts()){
the\_post();
get\_template\_part( 'content','entrylist' );
}
echo '</div></div></div>';
break;
case "conventional":
echo '<div class="blog-conventional"><div class="row"><div class="twelve columns">';
while(have\_posts()){
the\_post();
get\_template\_part( 'content','entryfullwidth' );
}
echo '</div></div></div>';
break;
default:
echo '<div class="blog-grid" >';
echo '<div class="row blog-post-row">';
$i = 0;
while(have\_posts()){
the\_post();
echo '<div class="six columns">';
get\_template\_part( 'content','entrygrid' );
echo '</div>';
if($i%2 == 1){
echo '</div><div class="row blog-post-row">';
}
$i++;
}
echo '</div></div>';
break;
}
global $wp\_query;
if($wp\_query->max\_num\_pages > 1){
echo '<div class="blog-pagination">';
$big = 999999999; // need an unlikely integer
echo paginate\_links( array(
'base' => str\_replace( $big, '%#%', esc\_url( get\_pagenum\_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get\_query\_var('paged') ),
'total' => $wp\_query->max\_num\_pages
) );
echo '</div>';
}
}else{
get\_template\_part('content','none');
}
?>
</div>
<?php
get\_sidebar();
get\_footer();
?>\[/code\]