2017-07-06 47 views
-1

我有一個WordPress網站(www.sarkarijobsresult.com)信息,我想對其類別歸檔進行一些更改。我主要做的工作我自己,但我現在面臨把當天的帖子在一個日期標題就像鏈接2.類別頁面修改

我把兩者結合起來,我的類別頁面截圖link1

我想這樣的問題分類頁面截屏link2

我的代碼如下:

<?php $j = 0; if (have_posts()) : while (have_posts()) : the_post(); ?> 
<?php single_cat_title(); ?><?php _e(" Published On ", "mythemeshop"); ?><?php the_time(' F jS,Y'); ?></span> 
    <a href="<?php the_permalink(); ?>"target="_blank"><li><b><?php the_title(); ?></b></li><br></a> 
<?php endwhile; endif; ?> 
<?php mts_pagination(); ?> 
<?php if ($j !== 0) { // No pagination if there is no posts ?> 
<?php } ?> 
+0

請包含您的模板代碼,以便我們可以看到您正在使用並嘗試過的內容。 – Ryan

+0

[在WordPress中按日期分組發帖]可能重複(https://stackoverflow.com/questions/9841514/group-posts-by-date-in-wordpress) – Ryan

回答