制作WordPress时间轴文章列表

制作WordPress时间轴文章列表,第1张

概述今天推荐的是一款时间轴样式的Wordpress文章归档页面,个人觉得比普通的归档页更加高大上一些,这里分享给大家,喜欢的可以拿去使用下。

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。内存溢出小编现在分享给大家,也给大家做个参考。

今天给大家推荐的是一款时间轴样式的 wordpress 文章归档页面,个人觉得比普通的归档页更加高大上一些,这里分享给大家,喜欢的可以拿去使用下。在 wordpress 中,文章归档页面是一个非常重要的页面,特别是当你的 wordpress 网站文章很多的时候,它将文章以年月日的分类方式对文章进行归类,可以让读者很方便的迅速找到某年某日的文章。wordpress 主题的文章归档页面样式大多是普通的文章标题列表页面,那今天给大家分享一组可以实现时间轴列表展示的文章归档页面代码,方便更清新的在页面中展示出标题及文章,且提供给大家前端的 CSS 及 Js,而且有展开文章列表功能,体验与适配程度都比较好。

模板代码

<div >

<?PHP

$prevIoUs_year = $year = 0;

$prevIoUs_month = $month = 0;

$ul_open = false;

$myposts = get_posts('numberposts=-1&orderby=post_date&order=DESC');

foreach($myposts as $post) :

setup_postdata($post);

$year = MysqL2date('Y',$post->post_date);

$month = MysqL2date('n',$post->post_date);

$day = MysqL2date('j',$post->post_date);

if($year != $prevIoUs_year || $month != $prevIoUs_month) :

if($ul_open == true) :

echo '</ul>';

endif;

echo '<h3 >'; echo the_time('Y-m'); echo '</h3>';

echo '<ul >';

$ul_open = true;

endif;

$prevIoUs_year = $year; $prevIoUs_month = $month;

?>

<li>

<a href="<?PHP the_permalink(); ?>"><span><?PHP the_time('Y-m-j'); ?></span><div ><?PHP the_Title(); ?></div></a>

</li>

<?PHP endforeach; ?>

</ul>

</div>

CSS 样式

将 CSS 样式代码添加到 wordpress 主题和 style.CSS 样式表内:

.archive-Title{border-bottom:1px #eee solID;position:relative;padding-bottom:4px;margin-bottom:10px}

.archives li a{padding:8px 0;display:block}

.archives li a:hover .aTitle:after{background:#ff5c43}

.archives li a span{display: inline-block;wIDth:100px;Font-size:12px;text-indent:20px}

.archives li a .aTitle{display: inline-block;padding:0 15px;position:relative}

.archives li a .aTitle:after{position:absolute;left:-6px;background:#ccc;height:8px;wIDth:8px;border-radius:6px;top:8px;content:""}

.archives li a .aTitle:before{position:absolute;left:-8px;background:#fff;height:12px;wIDth:12px;border-radius:6px;top:6px;content:""}

.archives{position:relative;padding:10px 0}

.archives:before{height:100%;wIDth:4px;background:#eee;position:absolute;left:100px;content:"";top:0}

.m-Title{position:relative;margin:10px 0;cursor:pointer}

.m-Title:hover:after{background:#ff5c43}

.m-Title:before{position:absolute;left:93px;background:#fff;height:18px;wIDth:18px;border-radius:6px;top:3px;content:""}

.m-Title:after{position:absolute;left:96px;background:#ccc;height:12px;wIDth:12px;border-radius:6px;top:6px;content:""}

Js 特效

点击月份伸缩效果,放在 Js 标签内部即可:

$('.archives ul.archives-monthListing').hIDe();

$('.archives ul.archives-monthListing:first').show();

$('.archives .m-Title').click(function() {

$(this).next().slIDetoggle('fast');

return false;

});

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的制作WordPress时间轴文章列表全部内容,希望文章能够帮你解决制作WordPress时间轴文章列表所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/1009822.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存