上一篇/下一篇文章链接的自定义排序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了上一篇/下一篇文章链接的自定义排序相关的知识,希望对你有一定的参考价值。
Custom sorting for events based on a custom fieldneeds to be added to navigation-links.php
requires plugin: http://wordpress.org/extend/plugins/ambrosite-nextprevious-post-link-plus/
<?php elseif ( in_category('6') ) : ?> <div class="navigation-links"> 'order_by' => 'custom', 'meta_key' => 'Datum', 'format' => '%link', 'link' => '« Vorige', 'before' => '<span class="previous">', 'after' => '</span>', 'in_same_cat' => true, ) );?> 'order_by' => 'custom', 'meta_key' => 'Datum', 'format' => '%link', 'link' => 'Nächste »', 'before' => '<span class="next">', 'after' => '</span>', 'in_same_cat' => true, ) );?> </div><!-- .navigation-links -->
以上是关于上一篇/下一篇文章链接的自定义排序的主要内容,如果未能解决你的问题,请参考以下文章
laravel写出文章的上一篇和下一篇并进行MySQL语句性能测试