WP archives dynamic
archives dynamic
==============================
<div class="siderbar-widget">
<h4 class="sidebar-widget-title">ARCHIVES</h4>
<ul>
<?php wp_get_archives( array('type' => 'monthly' , 'limit' =>12, 'order' =>'ASC')); ?>
</ul>
</div>
//sidebar.php te ei code use korte hobe.
//category er code gula archive.php te paste korte hobe taile month wise click korle kaj korbe.
..............
//different way
<?php $args = array(
'type' =>'monthly',
'limit' =>'',
'format' =>'html',
'before' =>'',
'after' =>'',
'show_post_count' =>false,
'echo' =>1,
'order' =>'DESC',
'post_type' =>'post'
);
wp_get_archives( $args ); ?>
No comments